- Oct 23, 2005
-
-
Tom Lane authored
while tar is copying it. This behavior is unhelpful when taking a base backup. Per gripe from Pallav Kalva back in April.
-
- Oct 22, 2005
-
-
Tom Lane authored
full_page_writes, etc.
-
Tom Lane authored
type time with time zone, ie, +/- 13:59 not +/- 12:00. Also some minor wording improvements.
-
Alvaro Herrera authored
-
- Oct 21, 2005
-
-
Tom Lane authored
the code actually does, and needed copy-editing anyway. Also take the opportunity to expand the section on routine reindexing.
-
Tom Lane authored
-
Neil Conway authored
an example function.
-
Tom Lane authored
documenting GiST crash recovery procedures, as requested some time ago by Teodor. (The GiST chapter doesn't seem quite the right place for the latter, but I'm not sure what else to do with it.)
-
Tom Lane authored
a parameter in binary format. Also, add a TIP explaining how to use casts in the query text to avoid needing to specify parameter types by OID. Also fix bogus spacing --- apparently somebody expanded the tabs in the example programs to 8 spaces instead of 4 when transposing them into SGML.
-
- Oct 20, 2005
-
-
Neil Conway authored
-
Tom Lane authored
held by means of role membership, rather than directly. Per discussion and bug fix of a couple weeks ago.
-
- Oct 19, 2005
-
-
Andrew Dunstan authored
replace use of predefined perl vars $a and $b with $x and $y - per Greg Sabino Mullane
-
- Oct 18, 2005
-
-
Tom Lane authored
possibility of a failure due to stack overflow when max_stack_depth is not set properly for the platform.
-
Tom Lane authored
fix problems with replacement-string backslashes that aren't followed by one of the expected characters, avoid giving the impression that replace_text_regexp() is meant to be called directly as a SQL function, etc.
-
- Oct 17, 2005
-
-
Tom Lane authored
exported routines of ip.c, md5.c, and fe-auth.c to begin with 'pg_'. Also get rid of the vestigial fe_setauthsvc/fe_getauthsvc routines altogether.
-
- Oct 16, 2005
-
-
Tom Lane authored
of 4096. Also add comment explaining why we don't suggest using /etc/sysctl.conf to avoid needing to edit /etc/rc.
-
- Oct 15, 2005
-
-
Neil Conway authored
or at any rate doesn't belong as a comment in a random SGML file.
-
Neil Conway authored
rather than British. Patch from Michael Fuhr.
-
Tom Lane authored
-
Bruce Momjian authored
-
Neil Conway authored
documentation. Mostly add some <xref>s, fix a few typos, and document that zlib is required in the installation docs.
-
Alvaro Herrera authored
-
- Oct 14, 2005
-
-
Tom Lane authored
the facility has been set, the facility gets set to LOCAL0 and cannot be changed later. This seems reasonably plausible to happen, particularly at higher debug log levels, though I am not certain it explains Han Holl's recent report. Easiest fix is to teach the code how to change the value on-the-fly, which is nicer anyway. I made the settings PGC_SIGHUP to conform with log_destination.
-
Andrew Dunstan authored
fix nonsensical summary row on example
-
Bruce Momjian authored
regression=# select '23:59:59.9'::time(0); time ---------- 24:00:00 (1 row) This is bad because: regression=# select '24:00:00'::time(0); ERROR: date/time field value out of range: "24:00:00" The last example now works.
-
Tom Lane authored
for the PL languages and for contrib.
-
Tom Lane authored
-
Bruce Momjian authored
'localhost'. Improve kerberos error message.
-
Tom Lane authored
affected types of objects.
-
- Oct 13, 2005
-
-
Tom Lane authored
-
Tom Lane authored
direction of writing triggers in a procedural language, rather than C. Per discussion.
-
Bruce Momjian authored
of client_min_messages (fatal + panic) are valid and also fixes a slight issue with how psql tried to display error messages that aren't sent to the client. We often tell people to ignore errors in response to requests for things like "drop if exists", but there's no good way to completely hide this without upping client_min_messages past ERROR. When running a file like SET client_min_messages TO 'FATAL'; DROP TABLE doesntexist; with "psql -f filename" you get an error prefix of "psql:/home/username/filename:3" even though there is no error message to prefix because it isn't sent to the client. Kris Jurka
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
applications that use FILE pointers.
-
Bruce Momjian authored
WAL and the interaction of the new full_page_writes parameter with PITR. The too-small WAL first sect1 has been merged with the one following sect1 for clarity. Some minor comments have been made in the WAL config section also. Passes SGML make and proofread for typos. Files changed: patching file doc/src/sgml/backup.sgml patching file doc/src/sgml/config.sgml patching file doc/src/sgml/wal.sgml Simon Riggs
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Prevent PQfnumber() from lowercasing unquoted the column name > > PQfnumber() should never have been doing lowercasing, but historically > it has so we need a way to prevent it >
-