- 04 Jun, 2006 4 commits
-
-
Bruce Momjian authored
< * %Remove behavior of postmaster -o > * %Make postmater and postgres options distinct so the postmaster -o > option is no longer needed
-
Bruce Momjian authored
< o Allow COPY to output from views > o Allow COPY to output from SELECT 570c570 < Another idea would be to allow actual SELECT statements in a COPY. > COPY should also be able to output views.
-
Bruce Momjian authored
Robert Treat
-
Bruce Momjian authored
Robert Treat
-
- 03 Jun, 2006 6 commits
-
-
Tom Lane authored
for LC_MESSAGES; instead, just press forward, leaving the effective setting at 'C'. There is not any very good reason to complain when we are going to replace the value soon with whatever postgresql.conf says. This change should solve the occasionally-reported problem of initdb failing with 'failed to initialize lc_messages'; the current theory is that that is a reflection of either wrong LANG/LC_MESSAGES or completely broken locale support.
-
Tom Lane authored
HAVE_INT64_TIMESTAMP was mentioning PG_CONTROL_VERSION instead. Victor Snezhko
-
Bruce Momjian authored
> * Allow WAL information to recover corrupted pg_controldata > > See partially completed patch and additional work required at > http://archives.postgresql.org/pgsql-patches/2006-06/msg00025.php. >
-
Tom Lane authored
Per Larry Rosenman.
-
Bruce Momjian authored
> * Allow WAL information to recover corrupted pg_controldata
-
- 02 Jun, 2006 3 commits
-
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
Teodor Sigaev authored
allow only recognized words in thezaurus configuration file.
-
- 01 Jun, 2006 3 commits
-
-
Tom Lane authored
see if using an intermediate variable avoids the gcc bug.
-
Tom Lane authored
E'...' syntax for strings in order to track the backend.
-
Tom Lane authored
and there's only one place that's a kluge, ie, appendStringLiteralConn. Note that pg_dump itself doesn't use appendStringLiteralConn, so its behavior is not affected; only the other utility programs care.
-
- 31 May, 2006 10 commits
-
-
Tom Lane authored
-
Tom Lane authored
NOT the thing to use here.
-
Tom Lane authored
the server. Per discussion, there seems no point in a waiting period before making this required.
-
Teodor Sigaev authored
-
Teodor Sigaev authored
It required some changes in lexize algorithm, but interface with dictionaries stays compatible with old dictionaries. Funded by Georgia Public Library Service and LibLime, Inc.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
o turns off escape_string_warning in pg_dumpall.c o optionally use E'' for \password (undocumented option?) o honor standard_conforming-strings for \copy (but not support literal E'' strings) o optionally use E'' for \d commands o turn off escape_string_warning for createdb, createuser, droplang
-
Bruce Momjian authored
-
Michael Meskes authored
-
- 30 May, 2006 14 commits
-
-
Tom Lane authored
in every shared library.
-
Tom Lane authored
-
Tom Lane authored
as this seems only likely to create headaches for module developers. Put the macro in the pre-existing fmgr.h file instead. Avoid being too cute about how many fields we can cram into a word, and avoid trying to fetch from a library we've already unlinked. Along the way, it occurred to me that the magic block really ought to be 'const' so it can be stored in the program text area. Do the same for the existing data blocks for PG_FUNCTION_INFO_V1 functions.
-
Tom Lane authored
across multiple loops, get rid of the shaky assumption that exactly one tuple is returned per node iteration.
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
This is just the minimal necessary change; we might want to adopt later PPPort output instead.
-
Bruce Momjian authored
It now only checks four things: Major version number (7.4 or 8.1 for example) NAMEDATALEN FUNC_MAX_ARGS INDEX_MAX_KEYS The three constants were chosen because: 1. We document them in the config page in the docs 2. We mark them as changable in pg_config_manual.h 3. Changing any of these will break some of the more popular modules: FUNC_MAX_ARGS changes fmgr interface, every module uses this NAMEDATALEN changes syscache interface, every PL as well as tsearch uses this INDEX_MAX_KEYS breaks tsearch and anything using GiST. Martijn van Oosterhout
-
Bruce Momjian authored
Martijn van Oosterhout
-
Tom Lane authored
demonstrating that its intent wasn't obvious.
-
Bruce Momjian authored
Martijn van Oosterhout
-
Bruce Momjian authored
--------------------------------------------------------------------------- Add dynamic record inspection to PL/PgSQL, useful for generic triggers: tval2 := r.(cname); or columns := r.(*); Titus von Boxberg
-
Bruce Momjian authored
into HEAD.
-
Bruce Momjian authored
Simon Riggs
-