| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
Kris Jurka
|
| |
|
|
|
|
|
| |
stand to be rewritten altogether, but for now just stick a finger in
the dike.
|
|
|
|
| |
input. Also, may as well mark it "cacheable" as well. From Kris Jurka.
|
| |
|
|
|
|
|
|
| |
http://archives.postgresql.org/pgsql-hackers/2004-10/msg00464.php.
I plan a more permanent fix in HEAD, but for the back branches it seems
best to just touch the places that actually have a problem.
|
|
|
|
|
| |
produced no rows. Now it returns 0 rows instead. Adjusted regression
test for this case.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
1) temp table crash
2) Check send_query() function call return value.
Backpatch to 7.4.X.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
out to be the same problem reported by Cott Lang which the previous
patch resolved) a new bug was uncovered when running with a debug level
of greater than 1.
This patch resolves this new found bug and fixes some of the other
debugging output to be more consistent.
Please apply to both HEAD and the 7.4 branch.
Matthew T. O'Connor
|
|
|
|
| |
Matthew T. O'Connor
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
| |
reported by David Garamond when working with bytea parent and child keys.
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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,
|
| |
|
| |
|
|
|
|
|
| |
datatype; the generic array comparators added in 7.4 supersede this.
Per report and patch from Korea PostgreSQL Users' Group.
|
| |
|
| |
|
| |
|
|
|
|
| |
'double' arithmetic, per recent discussion.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
| |
persistent_conn was left dangling after a disconnect in the
unnamed connection case, causing a subsequent disconnect to
crash the backend.
|
| |
|
|
|
|
| |
reported by Andrea Grassi.
|
|
|
|
| |
insertion to reduce initialization time.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
-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
|
|
|
|
| |
test was updated previously, but documentation is lagging.
|
|
|
|
|
|
|
|
|
| |
considered "tested."
And I have turned all of the 7.4 HISTORY material into DocBook for
release.sgml
Christopher Browne
|
|
|
|
|
|
| |
Change conditionals to be more constent with our code
if (const == var) => if (var == const).
|
|
|
|
|
|
|
|
| |
with a little dirty snprintf() usage which I used some years ago:
snprintf(path, BUFSIZ, "%s/lo_dump.index", path);
Karel Zak
|
|
|
|
|
|
| |
only read this because of Niel :-)
Robert Treat
|
|
|
|
|
|
|
| |
Lars Boegild Thomsen (full email below) and also corrects the regression
expected output for a recent backend message adjustment. Please apply.
Joe Conway
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
| |
a column dropped.
B) Updated the documentation for the 7.4 release.
Steven Singer
|
|
|
|
| |
M?rcio Dick Smiderle
|
|
|
|
|
|
| |
accounts.bid values of zero.
Jan
|
|
|
|
| |
Christopher Kings-Lynne. Also fix a couple more schema-awareness issues.
|