- 06 Jan, 2007 7 commits
-
-
Peter Eisentraut authored
sets the items, and serializes the value back (rather than adding an arbitrary number of XML preambles as before). The libxml memory management via palloc had to be disabled because it crashes when libxml tries to access memory that was helpfully freed earlier by PostgreSQL. This needs further thought.
-
Tom Lane authored
properly when doing a lookahead. The lack of this was causing various interesting misbehaviors when one tries to use "with" as a plain identifier.
-
Bruce Momjian authored
-
Bruce Momjian authored
Improve release docs for ecpg regression tests.
-
Bruce Momjian authored
-
Tom Lane authored
like my HPPA ...
-
Bruce Momjian authored
the library version number.
-
- 05 Jan, 2007 12 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Bruce Momjian authored
back-stamped for this.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Andrew Dunstan authored
Call setrlimit if possible in pg_regress to allow core file generation, and provide a switch for similar behaviour in pg_ctl.
-
Bruce Momjian authored
Stefan Kaltenbrunner
-
Tom Lane authored
-
- 04 Jan, 2007 6 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
-
Tom Lane authored
database privileges from a pre-8.2 server. This ensures that the reloaded database will maintain the same behavior it had in the previous installation, ie, everybody has connect privilege. Per gripe from L Bayuk.
-
Tom Lane authored
-
Bruce Momjian authored
-
Tom Lane authored
an optarg). Add some comments noting that code in three different files has to be kept in sync. Fix erroneous description of -S switch (it sets work_mem not silent_mode), and do some light copy-editing elsewhere in postgres-ref.
-
- 03 Jan, 2007 8 commits
-
-
Tom Lane authored
form '^(foo)$'. Before, these could never be optimized into indexscans. The recent changes to make psql and pg_dump generate such patterns (for \d commands and -t and related switches, respectively) therefore represented a big performance hit for people with large pg_class catalogs, as seen in recent gripe from Erik Jones. While at it, be more paranoid about case-sensitivity checking in multibyte encodings, and fix some other corner cases in which a regex might be interpreted too liberally.
-
Bruce Momjian authored
document why this happens. Remove exp() errno check because not needed.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
having md.c return a success/failure boolean to smgr.c, which was just going to elog anyway, let md.c issue the elog messages itself. This allows better error reporting, particularly in cases such as "short read" or "short write" which Peter was complaining of. Also, remove the kluge of allowing mdread() to return zeroes from a read-beyond-EOF: this is now an error condition except when InRecovery or zero_damaged_pages = true. (Hash indexes used to require that behavior, but no more.) Also, enforce that mdwrite() is to be used for rewriting existing blocks while mdextend() is to be used for extending the relation EOF. This restriction lets us get rid of the old ad-hoc defense against creating huge files by an accidental reference to a bogus block number: we'll only create new segments in mdextend() not mdwrite() or mdread(). (Again, when InRecovery we allow it anyway, since we need to allow updates of blocks that were later truncated away.) Also, clean up the original makeshift patch for bug #2737: move the responsibility for padding relation segments to full length into md.c.
-
Bruce Momjian authored
only return Nan and set errno for pow/exp overflow/underflow.
-
Bruce Momjian authored
platforms set errno, and we already have a check macro that detects under/overflow, so there is no reason for platform-specific code anymore.
-
D'Arcy J.M. Cain authored
-
- 02 Jan, 2007 7 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
with other places.
-
Bruce Momjian authored
isinf(), fall through to our own infinity checks.
-
Tom Lane authored
code path in tablecmds.c that wasn't exercised at all before.
-
Bruce Momjian authored
infrastructure.
-
Bruce Momjian authored
The purpose is to allow autovacuum-esq conditional vacuuming and clustering using SQL to discover the required stats. No documentation updates required. Catalog version updated. Glen Parker
-
Bruce Momjian authored
-