- 08 Dec, 2003 2 commits
-
-
Tom Lane authored
order. Remove some unnecessary #includes (that duplicate c.h).
-
Bruce Momjian authored
< * COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE ] > * -COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE ] 263c263 < * Allow pg_dump to dump CREATE CONVERSION (Christopher) > * -Allow pg_dump to dump CREATE CONVERSION (Christopher)
-
- 07 Dec, 2003 7 commits
-
-
Tom Lane authored
'double' arithmetic, per recent discussion.
-
Tom Lane authored
prevents view from showing constraints on domains. This addresses the other half of Claus Colloseus' bug report.
-
Peter Eisentraut authored
for bit(x), the typmod stores x+4, like for the character types.)
-
Tom Lane authored
reduce the number of times TopoSort() has to be executed by trying to extract multiple dependency loops from each pass, instead of only one. This saves about another factor of ten on the regression database. This could be considered as another exercise in grokking Fred Brooks' maxim: Representation *is* the essence of programming.
-
Joe Conway authored
functionality. Per bug report by Alvar Freude: http://archives.postgresql.org/pgsql-bugs/2003-12/msg00022.php
-
Tom Lane authored
bottleneck in the new pg_dump code.
-
Bruce Momjian authored
> * -Use dependency information to dump data in proper order
-
- 06 Dec, 2003 3 commits
-
-
Joe Conway authored
and pg_settings view.
-
Tom Lane authored
one (use a priority heap to keep track of items ready to output, instead of searching the input array each time). This brings the runtime of pg_dump back to about what it was in 7.4.
-
Tom Lane authored
pg_depend to determine a safe dump order. Defaults and check constraints can be emitted either as part of a table or domain definition, or separately if that's needed to break a dependency loop. Lots of old half-baked code for controlling dump order removed.
-
- 05 Dec, 2003 3 commits
-
-
Tom Lane authored
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
- 04 Dec, 2003 2 commits
-
-
Peter Eisentraut authored
-
Teodor Sigaev authored
-
- 03 Dec, 2003 5 commits
-
-
Joe Conway authored
-
Joe Conway authored
to certain compile-time options (FUNC_MAX_ARGS, INDEX_MAX_KEYS, NAMEDATALEN, BLCKSZ, HAVE_INT64_TIMESTAMP). Also added "category", "short_desc", and "extra_desc" to the pg_settings view. Per recent discussion here: http://archives.postgresql.org/pgsql-patches/2003-11/msg00363.php
-
Tom Lane authored
and hash bucket-size estimation. Issue has been there awhile but is more critical in 7.4 because it affects varchar columns. Per report from Greg Stark.
-
Teodor Sigaev authored
-
Michael Meskes authored
-
- 02 Dec, 2003 4 commits
-
-
Joe Conway authored
transaction has been committed without SPI_finish() being called first. Per recent discussion here: http://archives.postgresql.org/pgsql-patches/2003-11/msg00286.php
-
Tom Lane authored
-
Peter Eisentraut authored
-
Tom Lane authored
-
- 01 Dec, 2003 14 commits
-
-
Bruce Momjian authored
pg_autovacuum looses track of any table that's ever been truncated (possibly other situations too). When i truncate a table it gets a new relfilenode in pg_class. This is a problem because pg_autovacuum assumes pg_class.relfilenode will join to pg_stats_all_tables.relid. pg_stats_all_tables.relid is actallly the oid from pg_class, not the relfilenode. These two values start out equal so pg_autovacuum works initially, but it fails later on because of this incorrect assumption. This patch fixes that problem. Applied to HEAD and 7.4.X. Brian Hirt
-
Bruce Momjian authored
Andrew Dunstan
-
Bruce Momjian authored
not initialized if a log file is not specified on the command line. This causes an immediate segfault on systems that fill allocated memory with some value other than zero (my FreeBSD machine uses 0xD0). Several crashes later I discovered that args->user, password, host, and port are also used without being initialized. This doesn't appear to be fixed in CVS and I came up empty on a mailing list search -- hope it hasn't been reported already. Craig Boston
-
Bruce Momjian authored
(again). Please consider this patch for the 7.4.1 branch (if there will be one) too. Jason Tishler
-
Bruce Momjian authored
Neil Conway
-
Bruce Momjian authored
for the AT clause in threaded ECPG applications. Philip Yarra
-
Bruce Momjian authored
\lo_export LOBOID FILE \lo_import FILE [COMMENT] \lo_list \lo_unlink LOBOID large object operations Instead of not saying anything about what arguments are required. Christopher Kings-Lynne
-
Bruce Momjian authored
Claudio Natoli
-
Bruce Momjian authored
< * Change factorial to return a numeric > * -Change factorial to return a numeric (Gavin) 258c258 < * Allow psql \du to show groups, and add \dg for groups > * -Allow psql \du to show groups, and add \dg for groups
-
Bruce Momjian authored
\du and a \dg command to psql. It's against 7.4beta5. Markus Bertheau <twanger@bluetwanger.de>
-
Tom Lane authored
on 64-bit Solaris. Use a non-system-dependent datatype for UsedShmemSegID, namely unsigned long (which we were already assuming could hold a shmem key anyway, cf RecordSharedMemoryInLockFile).
-
Bruce Momjian authored
comments in the psql code. This doesn't make any functional change, so feel free to save it for 7.5 Neil Conway
-
Bruce Momjian authored
definitions use pretty printing. It does: * Pretty index predicates * Pretty rule definitions * Uppercases PRIMARY KEY and UNIQUE to be consistent with CHECK and FOREIGN KEY * View rules are improved to match table rules: Christopher Kings-Lynne
-
Bruce Momjian authored
proposal for eventually deprecating OIDs on user tables that I posted earlier to pgsql-hackers. pg_dump now always specifies WITH OIDS or WITHOUT OIDS when dumping a table. The documentation has been updated. Neil Conway
-