- 17 Apr, 2002 1 commit
-
-
Bruce Momjian authored
-
- 16 Apr, 2002 4 commits
-
-
Tom Lane authored
qualified operator names directly, for example CREATE OPERATOR myschema.+ ( ... ). To qualify an operator name in an expression you need to write OPERATOR(myschema.+) (thanks to Peter for suggesting an escape hatch). I also took advantage of having to reformat pg_operator to fix something that'd been bugging me for a while: mergejoinable operators should have explicit links to the associated cross-data-type comparison operators, rather than hardwiring an assumption that they are named < and >.
-
Dave Cramer authored
added a setup/teardown to create and drop the connection, and table
-
Dave Cramer authored
fixed getColumns as per Panu Outinen's email. At this point have only repaired the bug, haven't made it caseInsensitive
-
Michael Meskes authored
-
- 15 Apr, 2002 12 commits
-
-
Bruce Momjian authored
was in the thread "make BufferGetBlockNumber() a macro". Tom objected to the original patch, so I prepared a new one which doesn't change BufferGetBlockNumber() into a macro, it just cleans up some comments and fixes an assertion. The patch is attached. Neil Conway
-
Bruce Momjian authored
and fixes a few spelling mistakes in src/bakckend/lmgr/README. Neil Conway
-
Bruce Momjian authored
The indexes on most system catalogs are named with the suffix "_index"; not so with TOAST table indexes, which use "_idx". This trivial patch changes TOAST table index names to use the "_index" suffix for consistency. Neil Conway
-
Bruce Momjian authored
would be cleared by vacuum; fix idea from Tom Lane.
-
Bruce Momjian authored
Tom Lane to move string storage to end of structure but keep pointer in the same location.
-
Bruce Momjian authored
In summary, if a software writer implements timer events or other events which generate a signal with a timing fast enough to occur while libpq is inside connect(), then connect returns -EINTR. The code following the connect call does not handle this and generates an error message. The sum result is that the pg_connect() fails. If the timer or other event is right on the window of the connect() completion time, the pg_connect() may appear to work sporadically. If the event is too slow, pg_connect() will appear to always work and if the event is too fast, pg_connect() will always fail. David Ford
-
Tom Lane authored
selected as the creation target namespace; to make that happen, you must explicitly set search_path that way. This makes initdb a hair more complex but seems like a good safety feature.
-
Bruce Momjian authored
> * -Allow oid to act as a foreign key
-
Tatsuo Ishii authored
using Joe Conway's patches (submitted at pgsql-patches on 2002/04/08) + small fix.
-
Tom Lane authored
variables: JOIN/ON should allow references to contained JOINs. Per bug report from Barry Lind.
-
Tom Lane authored
have been divided according to the type of object manipulated - so ALTER TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and so on. A few common support routines remain in define.c (prototypes in src/include/commands/defrem.h). No code has been changed except for includes to reflect the new files. The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c, and typecmds.c remain in src/include/commands/defrem.h. From John Gray <jgray@azuli.co.uk>
-
Hiroshi Inoue authored
2) Introcuced 3 drivers. 3) The version is now 7.02.0001.
-
- 14 Apr, 2002 6 commits
-
-
Bruce Momjian authored
-
Peter Eisentraut authored
which covers some recent installation schemes. Add Mandrake installation layout to directories to check for stylesheets. Allow documentation build to proceed if stylesheets were not found, in case the stylesheets might be found through the SGML catalog mechanism.
-
Bruce Momjian authored
> without using PL/PgSQL EXECUTE, needs cached plan invalidation
-
Bruce Momjian authored
-
Michael Meskes authored
- Fixed one bug in structure handling resulting in using sizeof indicator instead of variable.
-
Tatsuo Ishii authored
-
- 13 Apr, 2002 7 commits
-
-
Bruce Momjian authored
some old code to add PK constraints to CREATE TABLE. That stuff had been removed as part of my original patch for pg_dump a little while ago. The attached patch fixes this by removing (again :-) ) the code in dumpTables() to perform PK creation during CREATE TABLE. I briefly tested it locally and it fixes both of Tom's test cases. Please apply. Cheers, Neil -- Neil Conway <neilconway@rogers.com>
-
Bruce Momjian authored
for Solaris on SPARC. Scott Brunza (sbrunza@sonalysts.com) gets credit for identifying the issue, making the change, and doing the regression tests. Earlier testing on 7.2rc2 and 7.2 showed performance gains of 1% to 10% on pgbench, osdb-pg, and some locally developed apps. Solaris Intimate Shared Memory is described in "SOLARIS INTERNALS Core Kernel Components" by Jim Mauro and Richard McDougall, Copyright 2001 Sun Microsystem, Inc. ISBN 0-13-022496-0 P.J. "Josh" Rovero
-
Tom Lane authored
-
Bruce Momjian authored
the libpgtcl "pg_execute" command. This was mentioned on pgsql-interfaces on Mar 3. I am posting it here in the hope that someone will check to see if it makes sense and is correct SGML-wise. I did run it through jade, but this is my first try at this sort of thing. ljb
-
Bruce Momjian authored
> * Change NUMERIC to enforce the maximum precision, and increase it
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Change NUMERIC data type to use base 10,000 internally
-
- 12 Apr, 2002 6 commits
-
-
Tom Lane authored
on the namespace not the name; pg_ is not a reserved prefix for table names anymore. From Fernando Nasser.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
pg_dumpall.
-
Bruce Momjian authored
-
Hiroshi Inoue authored
2) Suppress some error logs for the request to other drivers.
-
- 11 Apr, 2002 4 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
names are handled OK.
-