- Feb 24, 2004
-
-
Tom Lane authored
exposed thereby. AFAICT these would not lead to any worse problems than junk emitted on the backend's stdout, but we should have the option to catch possible worse errors in future.
-
Joe Conway authored
with ReturnSetInfo->expectedDesc. This allows custom datatypes (e.g. from tsearch2) to be returned at runtime. Previous behavior depended on the type oid to match between the remote and local database, which obviously doesn't work well for custom types. Per report from Mark Gibson.
-
Joe Conway authored
reported by David Garamond when working with bytea parent and child keys.
-
Tom Lane authored
and FreeDir routines modeled on the existing AllocateFile/FreeFile. Like the latter, these routines will avoid failing on EMFILE/ENFILE conditions whenever possible, and will prevent leakage of directory descriptors if an elog() occurs while one is open. Also, reduce PANIC to ERROR in MoveOfflineLogs() --- this is not critical code and there is no reason to force a DB restart on failure. All per recent trouble report from Olivier Hubaut.
-
- Feb 20, 2004
-
-
Bruce Momjian authored
Bug reference: 1081 Logged by: Aarjav Trivedi Email address: aarjav@cc.gatech.edu PostgreSQL version: 7.4 Operating system: Linux Description: Spelling error in tsearch2.sql leading to problems with tsearch Details: On line 620 of tsearch2.sql which is required to install and run TSEARCH, REATE FUNCTION tsstat_in(cstring) should be CREATE FUNCTION tsstat_in(cstring) because of this error, TSEARCH fails to work as specified,
-
- Feb 17, 2004
-
-
Bruce Momjian authored
In incorperates changes from myself and a number of contributors. This update to dbmirror provides: -replication of sequence operations via setval/nextval -DBMirror.pl support for logging to syslog -changed the names of the tables to dbmirror_* (no quotes required) -Support for writitng SQL statements to files instead of directly to a slave database -More options for DBMirror.pl in the config files. Steven Singer
-
- Feb 03, 2004
-
-
Tom Lane authored
Make btree index creation and initial validation of foreign-key constraints use maintenance_work_mem rather than work_mem as their memory limit. Add some code to guc.c to allow these variables to be referenced by their old names in SHOW and SET commands, for backwards compatibility.
-
- 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
-