- 13 Oct, 2002 2 commits
- 12 Oct, 2002 9 commits
-
-
Tom Lane authored
It isn't.
-
Tom Lane authored
one is pushed down into an outer join and the other is not.
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Rename oid2name to relfilenode2name and install by default
-
Bruce Momjian authored
> o Allow psql \copy to specify column names
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- 11 Oct, 2002 8 commits
-
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Add pg_backend_pid() function to backend
-
- 10 Oct, 2002 1 commit
-
-
Bruce Momjian authored
-
- 09 Oct, 2002 7 commits
-
-
Bruce Momjian authored
precision. vacuum.patch updates ref/vacuum.sgml to explicitly state that an exclusive lock is not obtained during normal (non-FULL) vacuum. Rod Taylor
-
Bruce Momjian authored
Added Tom's patch fix for heap_close. Rod Taylor
-
Bruce Momjian authored
contrib/contrib-global.mk library and _generally_ behave like Makefiles for other contrib modules. Besides it fixes Perl's interpolation of $libdir variable, which should be passed to backend instead. This patch is done against PostgreSQL 7.3b2 Besides, I want to thank Peter Eisentraut for his very friendly and helpful attitude and politely ask him to check whether contrib modules actually continue to work after he implements another major change to their build process. Alexey Borzov
-
Bruce Momjian authored
> > > > found in the postmaster and not included from elsewhere) > > > > shared libs on AIX need to be able to resolve all symbols at linkage time. > > Those two symbols are in backend/utils/SUBSYS.o but not in the postgres > > executable. > > They are defined in backend/utils/mb/conv.c and declared in > include/mb/pg_wchar.h. They're also linked into the > postmaster. I don't see anything unusual. Attached is a patch to fix the mb linking problems on AIX. As a nice side effect it reduces the duplicate symbol warnings to linking libpq.so and libecpg.so (all shlibs that are not postmaster loadable modules). Please apply to current (only affects AIX). The _LARGE_FILES problem is unfortunately still open, unless Peter has fixed it per his recent idea. Zeugswetter Andreas SB SD
-
Bruce Momjian authored
> > I'm looking at pg_dump/common.c:flagInhAttrs() and suspect that it can > > be more or less rewritten completely, and probably should to get rigth > > all the cases mentioned in the past attisinherited discussion. Is this > > desirable for 7.3? It can probably be hacked around and the rewrite > > kept for 7.4, but I think it will be much simpler after the rewrite. > > If it's a bug then it's fair game to fix in 7.3. But keep in mind that > pg_dump has to behave at least somewhat sanely when called against older > servers ... will your rewrite behave reasonably if the server does not > offer attinhcount values? Nah. I don't think it's worth it: I had forgotten that older versions should be supported. I just left the code as is and added a version-specific test. This patch allows pg_dump to dump correctly local definition of columns. In particular, CREATE TABLE p1 (f1 int, f2 int); CREATE TABLE p2 (f1 int); CREATE TABLE c () INHERITS (p1, p2); ALTER TABLE ONLY p1 DROP COLUMN f1; CREATE TABLE p3 (f1 int); CREATE TABLE c2 (f1 int) INHERITS (p3); Will be dumped as CREATE TABLE p1 (f2 int); CREATE TABLE p2 (f1 int); CREATE TABLE c (f1 int) INHERITS (p1, p2); CREATE TABLE c2 (f1 int) INHERITS (p3); (Previous version will dump CREATE TABLE c () INHERITS (p1, p2) CREATE TABLE c2 () INHERITS (p3) ) Alvaro Herrera
-
Bruce Momjian authored
-
Bruce Momjian authored
> o Allow SHOW of non-modifiable variables, like pg_controldata
-
- 08 Oct, 2002 4 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
into postgres.c; make sure it happens for all cases that seem to need it. Perhaps it would be better to explicitly exclude just a few utility statement types from setting a snapshot?
-
Dave Cramer authored
-
- 07 Oct, 2002 2 commits
-
-
Tom Lane authored
in our write/flush operation any WAL entries that got queued while we were waiting to get the WALWriteLock. This improves throughput when transactions are small enough that several can be committed per WAL write (ie, per disk revolution).
-
Tatsuo Ishii authored
false. per Tom Lane's suggestion. See: Subject: Suggested change to pgbench From: Tom Lane <tgl@sss.pgh.pa.us> To: Tatsuo Ishii <t-ishii@sra.co.jp> Cc: pgsql-patches@postgreSQL.org Date: Sun, 06 Oct 2002 12:37:27 -0400 for more details.
-
- 06 Oct, 2002 1 commit
-
-
Bruce Momjian authored
-
- 05 Oct, 2002 4 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Add now("transaction|statement|clock") functionality
-
Bruce Momjian authored
Also, code < and > as </> for cleaner SGML.
-
Bruce Momjian authored
> * Allow sorting, temp files, temp tables to use multiple work directories
-
- 04 Oct, 2002 2 commits