- Jan 26, 2004
-
-
Teodor Sigaev authored
-
- Jan 19, 2004
-
-
Teodor Sigaev authored
-
- Jan 09, 2004
-
-
Tom Lane authored
datatype; the generic array comparators added in 7.4 supersede this. Per report and patch from Korea PostgreSQL Users' Group.
-
- Dec 27, 2003
-
-
Tom Lane authored
version of a shared library.
-
- Dec 18, 2003
-
-
Teodor Sigaev authored
-
- Dec 17, 2003
-
-
Tom Lane authored
-
- Dec 10, 2003
-
-
Teodor Sigaev authored
Fix integer types to use definition from c.h. Per bug report by Patrick Boulay <patrick.boulay@medrium.com>
-
- Dec 08, 2003
- Dec 07, 2003
-
-
Tom Lane authored
'double' arithmetic, per recent discussion.
-
- Dec 05, 2003
-
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
- Dec 04, 2003
-
-
Teodor Sigaev authored
-
- Dec 03, 2003
-
-
Teodor Sigaev authored
-
- Dec 02, 2003
-
-
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
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
-
- Nov 29, 2003
-
-
PostgreSQL Daemon authored
make sure the $Id tags are converted to $PostgreSQL as well ...
-
PostgreSQL Daemon authored
$Header: -> $PostgreSQL Changes ...
-
- Nov 28, 2003
-
-
Teodor Sigaev authored
-
Joe Conway authored
persistent_conn was left dangling after a disconnect in the unnamed connection case, causing a subsequent disconnect to crash the backend.
-
- Nov 27, 2003
-
-
Teodor Sigaev authored
-
- Nov 26, 2003
-
-
Joe Conway authored
reported by Andrea Grassi.
-
Teodor Sigaev authored
-
Tatsuo Ishii authored
insertion to reduce initialization time.
-
- Nov 25, 2003
-
-
Teodor Sigaev authored
-
- Nov 17, 2003
-
-
Teodor Sigaev authored
-
- Nov 12, 2003
-
-
Tom Lane authored
pghackers proposal of 8-Nov. All the existing cross-type comparison operators (int2/int4/int8 and float4/float8) have appropriate support. The original proposal of storing the right-hand-side datatype as part of the primary key for pg_amop and pg_amproc got modified a bit in the event; it is easier to store zero as the 'default' case and only store a nonzero when the operator is actually cross-type. Along the way, remove the long-since-defunct bigbox_ops operator class.
-
Bruce Momjian authored
-
- Nov 09, 2003
-
-
Tom Lane authored
Remove the 'strategy map' code, which was a large amount of mechanism that no longer had any use except reverse-mapping from procedure OID to strategy number. Passing the strategy number to the index AM in the first place is simpler and faster. This is a preliminary step in planned support for cross-datatype index operations. I'm committing it now since the ScanKeyEntryInitialize() API change touches quite a lot of files, and I want to commit those changes before the tree drifts under me.
-
Bruce Momjian authored
-
- Oct 27, 2003
-
-
Bruce Momjian authored
-References to older versions of PostgreSQL have been removed(It no longer compiles against older versions) -Added a link to PgPerl at GBorg. Steven Singer
-
- Oct 20, 2003
-
-
Tom Lane authored
test was updated previously, but documentation is lagging.
-
- Oct 16, 2003
-
-
Bruce Momjian authored
considered "tested." And I have turned all of the 7.4 HISTORY material into DocBook for release.sgml Christopher Browne
-
- Oct 10, 2003
-
-
Bruce Momjian authored
Change conditionals to be more constent with our code if (const == var) => if (var == const).
-
- Oct 09, 2003
-
-
Bruce Momjian authored
with a little dirty snprintf() usage which I used some years ago: snprintf(path, BUFSIZ, "%s/lo_dump.index", path); Karel Zak
-
- Oct 08, 2003
-
-
Bruce Momjian authored
only read this because of Niel :-) Robert Treat
-
- Oct 02, 2003
-
-
Tom Lane authored
Lars Boegild Thomsen (full email below) and also corrects the regression expected output for a recent backend message adjustment. Please apply. Joe Conway
-
- Sep 29, 2003
-
-
Bruce Momjian authored
areas are for the lifetime of the backend and in the interests of not breaking something that's not broken I left alone. Note for anyone reading this and wanting it for tsearch-v2-stable (i.e. for 7.3 backend) this patch probably will not apply cleanly to that source. It should be simple enough to see what's going on and apply the changes by hand if need be. -- Nigel J. Andrews
-
Bruce Momjian authored
a column dropped. B) Updated the documentation for the 7.4 release. Steven Singer
-
- Sep 28, 2003
-
-
Bruce Momjian authored
M?rcio Dick Smiderle
-