threads listlengths 1 2.99k |
|---|
[
{
"msg_contents": "Hi,\n\nI have just installed Perl 5.6.0 and PostgreSQL 7.0.2. After successfull installation of both these\nprograms I tried to make PL/Perl support. After running the commands from Postgres manual I have\nreceived the following errors\n\n\n[root@eaccess plperl]# perl Makefile.PL\nWriting Mak... |
[
{
"msg_contents": "The Makefiles in doc/src and doc/src/sgml are slightly broken. They\nrefer back to Makefile.global, but do not have SRCDIR defined so that\nMakefile.custom (and perhaps other stuff) is not found. Also, there is a\nvariable ZIP defined at the top of doc/src/Makefile, but it is referred\nto as ... |
[
{
"msg_contents": "There's two problems here that kept me up all night hacking\nin order to keep my system from crashing an burning so bear with\nme if you can.\n\nIf you define a table and then create a select query rule over it\nthen drop the rule the table will be gone.\n\nAnother related problem is that let... |
[
{
"msg_contents": "I had another thought about fixing our problems with deriving index\nbounds for LIKE patterns in non-ASCII locales. (If you don't remember\nthe gory details here, please re-read thread\n\tSigh, LIKE indexing is *still* broken in foreign locales\nfrom pgsql-hackers archives of 7 to 10 June, 2... |
[
{
"msg_contents": "I was bemused to notice this afternoon that the backend does not build\nif you have not defined HAVE_TEST_AND_SET; furthermore, this has been\ntrue at least since 6.4. (slock() is compiled anyway, and it calls\nTAS(), which will be an undefined symbol.) From the lack of\ncomplaints we can d... |
[
{
"msg_contents": "Helge Bahmann (bahmann@math.tu-freiberg.de) reports a bug with a severity of 4\nThe lower the number the more severe it is.\n\nShort Description\nunique/references not honored when inheriting tables\n\nLong Description\nIf a table inherits fields carrying the \"references\" or \"unique\" cons... |
[
{
"msg_contents": "Alexandru Popa (razor@ldc.ro) reports a bug with a severity of 1\nThe lower the number the more severe it is.\n\nShort Description\npsql can crash the backend on login\n\nLong Description\nOn a FreeBSD 4.1-STABLE system, launching /usr/local/pgsql/bin/psql and giving control-d as a password ... |
[
{
"msg_contents": "I'm trying to figure out how to implement the behaviour of returning all\nsubclass fields. i.e. the \"SELECT **\" behaviour talked about in the\npast.\n\nWhat I'm thinking is that transformTargetList will do the same thing as\nper \"*\" except that it will set another flag \"and_the_rest\".\n... |
[
{
"msg_contents": "\n\n Hi,\n\n I have a question... why RULE call nexval() and data in RULE statement are\ndifferend than data in original stmt.\n\n An example:\n\ncreate sequence a;\ncreate table aa (id int DEFAULT nextval('a'), data text);\n\ninsert into aa (data) values ('xxxx');\ninsert into aa (data) valu... |
[
{
"msg_contents": "When is the next release due to go out?\n\nWith the recent move, and work having to take priority, I've been sort of\nout of the loop a bit. Anyhow, I've got a lot of catching up to do,\nespecially with a few patches that need to be checked and committed.\n\nPeter\n\n-- \nPeter Mount\nEnterpr... |
[
{
"msg_contents": "Hello again.\n\nI was wondering if anyone has made some .dsp .dsw files (Visual \nStudio project and workspace files) which correspond to the Win32 \nmakefiles for the .dll and .lib files (in src/interfaces/libpq), and \nperhaps also for the psql ultility (in src/bin/psql). I would prefer \nV... |
[
{
"msg_contents": "I have installed the libraries from RPM\n(postgresql-devel-7.0.2-2.i386.rpm). I couldn't compile a project using\nthe C++ library because in some config.h there's a line saying\n\n#include \"os.h\"\n\nthat points to a link to a non-existent linux.h. Any ideas? I just\ncommented the line and w... |
[
{
"msg_contents": "I can tell you the results Informix produces:\n\n> Am I right in thinking that the WHERE clause of a query must logically\n> be applied *after* any joins specified in the FROM clause?\n> \n> For example, suppose that we have table t1 (x int) containing the\n> values 1, 2, 3, 4, and table t2 (... |
[
{
"msg_contents": "Hello everyone. Hopefully someone can give me an answer and workaround on\nthis...\n\nI have a table with an array like so:\n\n\tcreate table foo (\n\t\tid\tint4,\n\t\tnames\tvarchar(80)[]\n\t);\n\nand would like to place an index on name[1]. I try\n\n\tcreate table foo_idx1 on foo (names[1... |
[
{
"msg_contents": "-----BEGIN PGP SIGNED MESSAGE-----\n\nSorry to bother you with this question, but I've found a bug with operators:\nExample:\n\ncreate table dummy ( a numeric(12,0), b float8);\ninsert into dummy (a,b) values (1, 2);\ninsert into dummy (a,b) values (7, 7);\ninsert into dummy (a,b) values (3, ... |
[
{
"msg_contents": "Greetings,\n I was trying to use arrays today, and can't seem to get it right. \n\nWhat am I doing wrong?\n\nler=# create table ia_standby (hsrp_group int2,\nler(# router_interfaces[] varchar(64),\nler(# routers[] varchar(64));\nERROR: parser: parse error at or near \"[\"\nler=# create ta... |
[
{
"msg_contents": "\nTom, the following was said in the apache turbine project mailing list a\nwhile back regarding telling the difference between an ordinary oid\ncolumn and an oid column that points to a large object. Can you confirm\nif this is true regarding the reference to change in v 7.1 ?\n\n--\n\"That'... |
[
{
"msg_contents": "> From: Tim Perdue <tperdue@valinux.com>\n>\n> Here's some fun new problems in Pgsql 7.0.2.\n> \n> My nightly job failed last night because supposedly the tables already\n> existed. If you do a \\d, you can see the tables. If you issue drop\n> table, look at the output below.\n> \n\nUnfortuna... |
[
{
"msg_contents": "\n> Oh, my mistake, I forgot that the WHERE clause would filter out NULLs.\n> Try\n> SELECT * FROM t1 LEFT JOIN t2 ON (x = y) WHERE y <> 2 OR y IS NULL;\n\n x y\n\n 1 1\n 3 NULL\n 4 4\n\nAndreas\n",
"msg_date": "W... |
[
{
"msg_contents": "\n> On Sat, Sep 02, 2000 at 01:39:47PM -0400, Tom Lane wrote:\n> > > So what happens with \"WHERE name like 'Czec%`\" ?\n> > \n> > Our existing code fails because it generates WHERE name >= \n> 'Czec' AND\n> > name < 'Czed'; it will therefore not find names beginning 'Czech'\n> > because thos... |
[
{
"msg_contents": "It seems to have vanished from my source after some updates from the\narchive.\n\nMichael\n-- \nMichael Meskes\nMichael@Fam-Meskes.De\nGo SF 49ers! Go Rhein Fire!\nUse Debian GNU/Linux! Use PostgreSQL!\n",
"msg_date": "Wed, 6 Sep 2000 18:20:22 +0200",
"msg_from": "Michael Meskes <mesk... |
[
{
"msg_contents": "I am experimenting with some new datatypes that require some\nmetadata to control their action (e.g., like the DATESTYLE does for\ndate/time types). It seems that some new runtime variables make most\nsense for this, though other suggestions are welcome.\n\nIs there any documentation on how ... |
[
{
"msg_contents": "> Is there any way to take a look at the code?\n> Is it in the CVS ?\n\nLog manager code are in CVS. Heap redo/undo will be there\nsoon.\n\nVadim\n",
"msg_date": "Wed, 6 Sep 2000 11:24:37 -0700 ",
"msg_from": "\"Mikheev, Vadim\" <vmikheev@SECTORBASE.COM>",
"msg_from_op": true,
... |
[
{
"msg_contents": "\n* Disallow LOCK on view\n\tchange to\n* -Disallow LOCK on view (Mark H)\n\twell, at least when my patch is applied :)\n\n\n* Allow SQL function indexes\n\tThis seems to work in the CVS code, or I have misunderstood:\n\tCREATE TABLE t ( a int);\n\tCREATE FUNCTION mod5(int) RETURNS int AS 'se... |
[
{
"msg_contents": "In the CVS as of ~ 13:00 EDT \n\nmake[4]: Entering directory `/home/mhh/src/pgsql.work/src/backend/access/common'\ngcc -c -I../../../../src/include -O2 -g -Wall -Wmissing-prototypes -Wmissing-declarations -MMD heaptuple.c -o heaptuple.o\nIn file included from ../../../../src/include/storage... |
[
{
"msg_contents": "\nI have a database where, periodically, I get a query that is producing\npg_noname files that are >1gig in size ... according to syslog, for that\nprocess:\n\nSep 7 18:36:39 pgsql postgres[47078]: DEBUG: ExecRestrPos: node type 17 not supported\nSep 7 18:36:39 pgsql postgres[47078]: DEBUG... |
[
{
"msg_contents": "Syntax:\n\nALTER TABLE <table> OWNER TO <newowner>\n\nSecurity:\n\nThe owner of a table will be able to change the owner to any other user.\nThe superuser will NOT have special privileges.\n\n-- \n\nMark Hollomon\nmhh@nortelnetworks.com\nESN 451-9008 (302)454-9008\n",
"msg_date": "Fri, 08... |
[
{
"msg_contents": "\nI've got a situation while looking at \nmatch partial fks that I figured I'd ask for\nsuggestions about, in case there's a better\nsolution than the one I've come up with.\n\nI believe for referential actions on match\npartial, we need to lock all referencing rows\nin the fk table as well a... |
[
{
"msg_contents": "Email was fried, so one more time...\n\n-- \nPeter Eisentraut peter_e@gmx.net http://yi.org/peter-e/\n\n---------- Forwarded message ----------\nDate: Wed, 6 Sep 2000 16:19:08 +0200 (CEST)\nFrom: Peter Eisentraut <peter_e@gmx.net>\nTo: PostgreSQL Development <pgsql-hackers@postgres... |
[
{
"msg_contents": "I just read across the code in command/trigger.c:ExecCallTriggerFunc() and\napparently the trigger function is called unconditionally even if the\n\"strict\" flag is set. Perhaps this should be amended somewhere.\n\nFor coding clarity and convenience I'd suggest that we add another\nfunction ... |
[
{
"msg_contents": "Targets of the form\n\ndepend dep:\n $(CC) -MM $(CFLAGS) *.c >depend\n\nare wrong, there should be at least a $(CPPFLAGS) in there. In fact, the\nwhole CPPFLAGS vs CFLAGS issue is completely messed up, in case you ever\nwondered why you get duplicate `-I' options on the compile line.\n... |
[
{
"msg_contents": "Is there a compelling reason to continue to ship a \"pre-7\" version of the\nODBC catalog extension in contrib/odbc?\n\nIf not, could we not instead move the odbc.sql file into interfaces/odbc\nand install it with the odbc driver? (\"install\" here refers to installing\ninto the file system, ... |
[
{
"msg_contents": "A few weeks ago there was a discussion on how views should be\ntreated during dump/reload, and whether or not to change pg_dump\nto use CREATE VIEW instead of the current CREATE TABLE/CREATE\nRULE sequence. I suggested at that time that the dependencies\nissue could be resolved if PostgreSQL ... |
[
{
"msg_contents": "> >> ALTER FUNCTION numpeople() AS \n> >> 'SELECT COUNT(*) FROM managers' LANGUAGE 'plpgsql';\n> \n > > Actually, I think this would still work, because it\n> > doesn't check the table name existance until it's \n> > used for the first time, not when it's created.\n> \n> But SQL-language func... |
[
{
"msg_contents": "The last sources cannot be complied because the file src/include/storage/relfilenode.h is absent\n\n",
"msg_date": "Sat, 9 Sep 2000 11:22:56 +0800",
"msg_from": "Alexey Raschepkin <apr@direct.ru>",
"msg_from_op": true,
"msg_subject": "Sources from the CVS cannot be compiled"
... |
[
{
"msg_contents": "I've searched Mosix, Dipc, Postgres mailing-lists and used google about the \npossibility to cluster ,load balance, Postgresql databases.\n\nMosix isn't good to clucter Postgresql because of shared memory.\n\nCan be Dipc (http://wallybox.cei.net/dipc/) suitable for this task without \nchangin... |
[
{
"msg_contents": "Seems I found the problem with the 'select pg_class from pg_class'\nerror. In fact this error arises not only with the pg_class table but\nwith any select statement where one of the select attributes is the\nsame as the table name and doesn't exist in the table.\n\nThe problem is in the trans... |
[
{
"msg_contents": "I found out during a pgdump/restore that not all tables were being\nbacked up. After some investigation I suspect that this was because the\ntables in question were not owned by anybody! I don't know how this\nhappened perhaps a user that owned those tabled was dropped. Another odd\nthing was... |
[
{
"msg_contents": ">> In the CVS as of ~ 13:00 EDT \n>> ../../../../src/include/access/htup.h:18:\n> storage/relfilenode.h: No such file or directory\n>\n> Looks like Vadim forgot to 'cvs add' a file before\n> his latest commit...\n\nThanks, fixed. BTW, what's the status of new table\nfilenaming?\n\nVadim\n\n--... |
[
{
"msg_contents": "It seems PL/pgSQL accepts only ASCII identifiers. This results in\ncolumn names of Europian or Asian languages are syntax errors for\nexample. Fix for this looks simple (see attached patches) but I would\nlike to know if there's any intentional reasons for this.\n--\nTatsuo Ishii\n\n*** scan.... |
[
{
"msg_contents": "\nsomeone notice anything wrong with this query? :) *slap forehead*\n\nexplain\n SELECT distinct s.gid, s.created , geo_distance(pd.location, '(-90.3690233918754,38.7788148984854)')\n FROM status s, personal_data pd, relationship_wanted rw , personal_ethnicity pe , personal_religion pr , ... |
[
{
"msg_contents": "\n Row versioning in the ODBC driver apparently does not work because of a\nmissing operator. The FAQ solution is contained below. The answer\nsuggests that this problem should be fixed in PostgreSQL 6.4, but I'm\nusing 7.0.2 and I still get the missing operator error if I attempt to\nenab... |
[
{
"msg_contents": "Hi,\n\nI'm going to Bulgaria this week to setup FreeBSD server running\npostgres and would like to know if somebody has an experience\nwith postgres and bulgarian locale. Actually, I need\nbg_BG locale for FreeBSD. interesting that searching for\nsubject in internet doesn't provide any inform... |
[
{
"msg_contents": "\n> I know that someone was working on a commercial extension to PostgreSQL\n> to add clustering based on a shared disk system. Basically he was added a\n> raw storage manager to PostgreSQL plus a lock manager to co-oridinate\n> access to the shared disk. That way the two nodes could co-o... |
[
{
"msg_contents": "\nWhat am I doing wrong ?\n\n[hannu@me cvs_downloads]$ cvs -d\n:pserver:anoncvs@postgresql.org:/usr/local/cvsroot login\n(Logging in to anoncvs@postgresql.org)\nCVS password: \n\n## here I enter password: postgresql\n\ncvs [login aborted]: authorization failed: server postgresql.org\nrejected... |
[
{
"msg_contents": "\n> someone notice anything wrong with this query? :) *slap forehead*\n> \n> explain\n> SELECT distinct s.gid, s.created , \n> geo_distance(pd.location, '(-90.3690233918754,38.7788148984854)')\n> FROM status s, personal_data pd, relationship_wanted rw , \n> personal_ethnicity pe , perso... |
[
{
"msg_contents": "\n> (With 7.2 I plan to get rid of pg_shadow.usesysid and \n> identify users via\n> pg_shadow.oid and the superuser oid will be hard-coded into\n> include/catalog/pg_shadow.h, so at that point they will work.)\n\nImho it is fine to get rid of the usesysid in our internal authorization\nsystem... |
[
{
"msg_contents": "> > 2) Change pg_dump to walk through dependencies?\n> \n> The trouble with that is that dependency analysis is a monstrous job,\n> and one that would make pg_dump even more fragile and backend-version-\n> dependent than it is now. \n\nOne way to get around that might be to make the dumping ... |
[
{
"msg_contents": "I'm running postgresql 7.0.2 on Solaris 8 and I get errors when I try togrant a user. The query and error are ike this:\n\nhorde=# GRANT SELECT, INSERT, UPDATE ON active_sessions TO martin;\nERROR: aclparse: non-existent user \"martin\"\nhorde=# \n\nNow, user martin exists on as a system use... |
[
{
"msg_contents": "I'm sure your aware of these limitations, but I'd thought I'd mention\nthem just in case, and to see if you have plans to sort them out:\n\nI have a query of the form:\n\nSELECT * FROM .... WHERE (now()-date1) > 'interval 1 day';\n\n..i.e. all rows 'older' than 1 day. This could be efficient... |
[
{
"msg_contents": "Mariposa (http://mariposa.CS.Berkeley.EDU/download.html) has a BSD licence \nbut it refers to Postgres95.\nMariposa is a patch aganist postgres sources and alpha release, there are a \nlot of Papers describing this.\nI've compiled under linux but no success.\n\nIt's possible that there isn't ... |
[
{
"msg_contents": "Hi,\n\nI am tring to use the qnx version of postgresql 7.0.0\n\nI have qnx 4.25 and TCP/IP\n\nI have compiled postgres using gcc\nI used this commands\ngmake all\ngmake install\n\nthen I have started postgres with -D and -i options.\n\nEvery time I execute the command createdb I have SIGSEGV ... |
[
{
"msg_contents": "I sent to the following patch to the PATCHES list.\n\n\nThis patch implements the following command:\n\nALTER TABLE <tablename> OWNER TO <username>\n\nOnly a superuser may execute the command.\n\n-- \nMark Hollomon\nmhh@mindspring.com\n",
"msg_date": "Mon, 11 Sep 2000 10:10:42 -0400",
... |
[
{
"msg_contents": "I have a script that dumps the content of a 7.0.2 database using\npg_dump. I dump the data using the -acD flags, then the schema using\nthe -scD flags. For databases with no user defined types, this works\nfine.\n\nHowever, I have one database with a user defined type and get the\nfollowing... |
[
{
"msg_contents": "> > > > 2) Change pg_dump to walk through dependencies?\n> > > \n> > > The trouble with that is that dependency analysis is a \n> monstrous job,\n> > > and one that would make pg_dump even more fragile and \n> backend-version-\n> > > dependent than it is now. \n> > \n> > One way to get aroun... |
[
{
"msg_contents": "I have defined various operators for some user defined types. How do\nI use them for setting up an index on the types?\n\nThe naive approach yields the following\n\n\tERROR: DefineIndex: type geocentric_point has no default operator class\n\nso presumably one must define a default operator.... |
[
{
"msg_contents": "There seems to a race condition somewhere where that if you're\nrunning let's say pg_dumpall and happen to drop a table mid-dump\npg_dumpall will die because it looses the table.\n\nWould it make sense to use a transaction system so that when a table\nis renamed/dropped it doesn't actually go... |
[
{
"msg_contents": "Hello,\n\nI don't know if this is worth mentioning, but when I tried to\nbuild the Sept. 11 snapshot on a machine which has the 7.0.2 RPMS\ninstalled, I did a:\n\n./configure\ngmake\n\nand got the following error:\n\ngmake[4]: Entering directory\n`/usr/src/pgsql/src/backend/storage/ipc'\ngcc ... |
[
{
"msg_contents": "I've just committed changes to the main tree which fixes date to\ntimestamp conversion around daylight savings time boundaries. A\npreviously-uncalled system routine, mktime(), is used for this\nconversion, so we need to keep an eye out for portability issues.\n\nI've added explicit regressio... |
[
{
"msg_contents": "I'm nearly ready to commit fairly wide-ranging changes for outer join\nsupport. The spurt of commits today took me far out of sync again, so\nbefore I try to merge my changes --- is anyone about to commit a bunch\nmore stuff?\n\nI currently have uncommitted changes in the attached list of fi... |
[
{
"msg_contents": "\n> There seems to a race condition somewhere where that if you're\n> running let's say pg_dumpall and happen to drop a table mid-dump\n> pg_dumpall will die because it looses the table.\n> \n> Would it make sense to use a transaction system so that when a table\n> is renamed/dropped it doesn... |
[
{
"msg_contents": "\n> > 2. The executor complains if a DELETE or\n> > \tINSERT references a view.\n\nI think this is for new todo items:\n\tcreate insert, update and delete rules for simple one table views\n\tchange elog for complex view ins|upd|del to \"cannot {ins|upd|del}\n[into|from] complex view without a... |
[
{
"msg_contents": "Under both 6.5 and 7.0:\n----------------------\nstocks=# create table test (key int4);\nCREATE\nstocks=# create function crap(int4) returns int4 as \n'select sum(key) from test' language 'sql';\nCREATE\nstocks=# select version();\n \nversion ... |
[
{
"msg_contents": "yes, i can find this useful\n\nvalter\n\n>From: Bruce Momjian <pgman@candle.pha.pa.us>\n>To: mweilguni@sime.com\n>CC: Postgres Hacker Lister <pgsql-hackers@postgresql.org>\n>Subject: Re: [HACKERS] Patch for TNS services\n>Date: Tue, 12 Sep 2000 01:13:33 -0400 (EDT)\n>\n>Sounds like people wan... |
[
{
"msg_contents": "Hi,\n\nI experience a strange error with 7.0.2. I cannot get any results with\ncertain queries. For example, a foo table is defined with a few columns,\nit has a \n\nid_string varchar(100) \n\ncolumn, too. I filling this table, it contains e.g. a row with\n'something' in the column id_string.... |
[
{
"msg_contents": "Hello,\nI have encountered problems with particular query so that\na started to dug into sources. I've two questions/ideas:\n\n1) when optimizer computes size of join it does it as\n card(R1)*card(R2)*selectivity. Suppose two relations\n (R1 & R2) each 10000 rows. If you (inner) join them... |
[
{
"msg_contents": "Where are we in subj?\nOid.version or UniqueId?\nIf noone is going to implement it soon then I'll have to\nchange code to OID file naming for WAL.\n\nVadim\n",
"msg_date": "Tue, 12 Sep 2000 09:12:03 -0700",
"msg_from": "\"Mikheev, Vadim\" <vmikheev@SECTORBASE.COM>",
"msg_from_op":... |
[
{
"msg_contents": " Date: Tuesday, September 12, 2000 @ 14:56:03\nAuthor: momjian\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1\n from hub.org:/home/projects/pgsql/tmp/cvs-serv77884/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1\n\nModified Files:\n\tDatabaseMetaD... |
[
{
"msg_contents": "With latest CVS, rules regress test is failing with\n\n -- Test for constraint updates/deletes\n --\n insert into rtest_system values ('orion', 'Linux Jan Wieck');\n+ ERROR: You can't change view relation rtest_system\n insert into rtest_system values ('notjw', 'WinNT Jan Wieck (notebook... |
[
{
"msg_contents": "I have committed initial support for outer joins. There's still more to do,\nbut I was getting antsy to get back in sync with the CVS repository. Also,\nI'm hoping to get other people to do some of the remaining work ;-)\n\nWhat works: ISO \"JOIN\" syntax for INNER, LEFT, RIGHT, FULL, CROSS... |
[
{
"msg_contents": "> Probably WAL would solve this phenomenon by rolling\n> back the content of disc and shared buffer in reality.\n> However if 7.0.x would be released we had better change \n> bufmgr IMHO.\n\nI'm going to handle btree split but currently there is no way\nto rollback it - we unlock splitted pag... |
[
{
"msg_contents": "> My idea was to append a version number or oid on to the end \n> of the file name, and use that somehow.\n\nYou'll lose all you would buy as soon as we'll begin to store many\nrelations in single file... and I would like to implement this in 7.1\n\nVadim\n",
"msg_date": "Tue, 12 Sep 2000... |
[
{
"msg_contents": "It seems current source is broken if MB is enabled.\n\ngcc -c -I../../../src/interfaces/libpq -I../../../src/include -I../../../src/interfaces/libpq -O2 -Wall -Wmissing-prototypes -Wmissing-declarations pg_dump.c -o pg_dump.o\npg_dump.c: In function `isViewRule':\npg_dump.c:267: parse error... |
[
{
"msg_contents": "You have to tell us whether you plan to implement \na safe file rename in WAL ? If yes a simple filename\nwithout version would be possible and better.\n\nAndreas\n\n> Where are we in subj?\n> Oid.version or UniqueId?\n> If noone is going to implement it soon then I'll have to\n> change code ... |
[
{
"msg_contents": "Hello,\n\nI'd like to know if anyone can reproduce a strange error in V7.02\n(debian i386). It happens when an index-scan is done in an index with\nmore than 80 entries, using a like-match, where the %-wildcard\ndirectly follows a '/'. A simple example (which creates a database\ntestdb) is ap... |
[
{
"msg_contents": "Hello Hackers,\n\nwith V7.02, it seems when a constraint evalutes to 'null', it behaves\nlike 'true'. I'm rather sure this behaviour changed from V6.x, though I \ncan't check it.\n\nexample:\n\n create table test (a int4 check (a > 0));\n\nallows a to be null. But\n\n select * from test whe... |
[
{
"msg_contents": "\n> with V7.02, it seems when a constraint evalutes to 'null', it behaves\n> like 'true'. I'm rather sure this behaviour changed from \n> V6.x, though I \n> can't check it.\n> \n> example:\n> \n> create table test (a int4 check (a > 0));\n> \n> allows a to be null. But\n\nyes\n\n> \n> sel... |
[
{
"msg_contents": "Hi,\n\nI'm not sure if this has been already discussed..\n\nRenaming a database table doesn't change automatically created index\nnames, so that if you do\n\ncreate table t(a int primary key);\nalter table t rename to t1;\ncreate table t(a int primary key);\n\nthen the second create will fail... |
[
{
"msg_contents": "Hello,\n\nI wrote this mail to pgsql-general, but have no mail from it since\nyesterday. If someone replied to me, please resend the reply privately.\n\n---------- Forwarded Message ----------\nSubject: Problems inserting data\nDate: Tue, 12 Sep 2000 17:02:57 +0700\nFrom: Denis Perchine <dy... |
[
{
"msg_contents": "Philip Warner <pjw@rhyme.com.au> writes:\n> I thought I would test the latest changes to pg_dump on the regression db,\n> and got the following output for an aggregate:\n\n> CREATE AGGREGATE newcnt (BASETYPE = opaque, SFUNC = int4inc, STYPE =\n> int4, INITCOND = '0' );\n\n> Unfortunately,... |
[
{
"msg_contents": "> You have to tell us whether you plan to implement \n> a safe file rename in WAL ? If yes a simple filename\n> without version would be possible and better.\n\nWhat do you mean?\n\nVadim\n",
"msg_date": "Wed, 13 Sep 2000 10:29:37 -0700",
"msg_from": "\"Mikheev, Vadim\" <vmikheev@SECT... |
[
{
"msg_contents": "> Will this new storage manager replace the current one or will one be \n> able to choose which storage manager to use (at compile time, at \n> startup, for each table)?\n\nThis would be possible, but no way if new smgr will be overwriting one\n(smgr nature affects access methods).\n\n> Postg... |
[
{
"msg_contents": "> My vote is for a random number, and then someone can write \n> the tools to display the file info. I'll even volunteer to\n> work on them...\n\nOk. If someone will decide to implement this please try to use\nRelFileNode structure defined in storage/relfilenode.h.\nIt's just place holder for... |
[
{
"msg_contents": "I wasn't too sure where to mail this.\n\nI have noticed that there are some identical files in\npostgresql-7.0.2/src/test/regress/expected/\n\n> diff float8-cygwin.out float8-small-is-zero.out #I recommend deleting\nfloat8-cygwin.out\n> diff geometry-cygwin-precision.out geometry-solaris-prec... |
[
{
"msg_contents": "I noticed today that current sources are not able to use an index\nfor a query like\n\tselect * from foo where bar like 'xyz%';\n\nIt seems that the parser now emits some kind of function call for LIKE\nexpressions, whereas the optimizer's code to use indexes for LIKE is\nlooking for an opera... |
[
{
"msg_contents": "I was just doing some huge operations with PostgreSQL and it all crashed out\nwith a \"too many files open\" message plastered all over the place..\n\nNow in /proc/sys/fs/file-max there is only 4096, that limit could have\neasily been reached. Does changing the value in the file effectively c... |
[
{
"msg_contents": "NOTICE: Rel webhit_details_formatted: TID 7/17: OID IS INVALID. TUPGONE 0.\n\nThis happens after a while. Then I try:\n\n# select * into wdbak from webhit_details_formatted; \nFATAL 1: Memory exhausted in AllocSetAlloc()\npqReadData() -- backend closed the channel unexpectedly.\n T... |
[
{
"msg_contents": "Hi there,\n[I sent this email to pgsql-general yesterday, but it seems to be horked and \nthis looks like the next best place]\n \nI have a set of structually identical databases which are functionally \nindependant.\n\nHowever, I now want to be able to do a full text index search on a sing... |
[
{
"msg_contents": "\nOkay, logically I think this makes sense, but its not working ... should\nit?\n\nglobalmatch=# insert into auth_info_new\nglobalmatch-# select ai.* from auth_info ai, auth_info_new ain\nglobalmatch-# where ai.username != ain.username;\nINSERT 0 0\n\nauth_info has 14k tuples, but some are du... |
[
{
"msg_contents": "Hi,\n\nI'm developping a geographical object type, very close to the geographic\ntype of PG. For the moment it is set up as external functions...\n\nI would like to add indexing capabilities, and I have seen that indexing for\nPG geographical objects is on the TODO list for 7.1. \n\nI would l... |
[
{
"msg_contents": "> > You have to tell us whether you plan to implement \n> > a safe file rename in WAL ? If yes a simple filename\n> > without version would be possible and better.\n> \n> What do you mean?\n\nThe previous discussion we had where we concluded, that \nan os rename of a file cannot be done witho... |
[
{
"msg_contents": "\n> > My vote is for a random number, and then someone can write \n> > the tools to display the file info. I'll even volunteer to\n> > work on them...\n\nWhat was the advantage of random number over oid [+version]\nin the light that there is an extra field in pg_class for other smgrs ?\nWe su... |
[
{
"msg_contents": "I was just about to ask the same question...\n\nmed v�nlig h�lsning\n/Dana\n\n-----Original Message-----\nFrom:\tsteve@thornet.co.uk [SMTP:steve@thornet.co.uk]\nSent:\tThursday, September 14, 2000 10:09 AM\nTo:\tpgsql-general@postgresql.org; pgsql-hackers@postgresql.org\nSubject:\t[HACKER... |
[
{
"msg_contents": "At 10:00 14/09/00 +0200, Zeugswetter Andreas SB wrote:\n>\n>> > My vote is for a random number, and then someone can write \n>> > the tools to display the file info. I'll even volunteer to\n>> > work on them...\n>\n>What was the advantage of random number over oid [+version]\n>in the light th... |
[
{
"msg_contents": "\nContinuing to try to use format_type to output all types, I get the\nfollowing in the regression database:\n\nCREATE AGGREGATE newavg ( \n BASETYPE = integer, \n SFUNC = int4_accum, \n STYPE = \"numeric[]\", \n INITCOND = '{0,0,0}', \n FINALFUNC = numeric_avg\n);\n\nwhere the orig... |
[
{
"msg_contents": "\n\n\npg_dump.c: In function `AsViewRule':\npg_dump.c:267: parse error before `int'\n/* 'int len;' not in declaration block */\npg_dump.c:268: 'len' undeclared (first use in this function)\npg_dump.c:268: (Each undeclared identifier is reported only once\npg_dump.c:268: for each function it a... |
[
{
"msg_contents": "I've made minor modifications to the abstime and horology regression\ntests, to move cross-type tests to horology and abstime-only tests to\nabstime. I slightly rearranged the order of regression tests in the\ndate/time area, and made the abstime test part of the \"parallel safe\"\ntest seque... |
[
{
"msg_contents": "Rename... Why would we need in rename with OID filenames?\nOk, let's start with OID (*without tablename prefix|suffix*) filenames\nand we'll see later how it will work.\n\nSo, could someone implement OID filenames?\n(Please use RelFileNode structure).\n\nVadim\n\n> > > You have to tell us whe... |
[
{
"msg_contents": "> > I'm going to handle btree split but currently there is no way\n> > to rollback it - we unlock splitted pages after parent\n> > is locked and concurrent backend may update one/both of\n> > siblings before we get our locks back.\n> > We have to continue with split or could leave parent unch... |
[
{
"msg_contents": " \n> > Rename... Why would we need in rename with OID filenames?\n> \n> Andreas seems to refer to in place replacement of OID files e.g.\n> using your *relink*.\n\nSorry, I've messed things for myself.\n\nOk. In short, I vote for UNIQUE_ID (unrelated to pg_class.oid) file names.\nI think that... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.