- Jun 13, 2011
-
-
Alvaro Herrera authored
The previous wording wasn't explicit enough, which could misled readers into thinking that the locks acquired are more restricted in nature than they really are. The resulting optimism can be damaging to morale when confronted with reality, as has been observed in the field. Greg Smith
-
Robert Haas authored
This is more consistent with what we do elsewhere, and hopefully avoids creating the perception that current_schemas takes no arguments. As suggested by Brendan Jurd
-
Robert Haas authored
As suggested by Grzegorz Szpetkowski.
-
Robert Haas authored
Brendan Jurd
-
Robert Haas authored
Fujii Masao
-
Robert Haas authored
Noted by Daniele Varrazzo.
-
Robert Haas authored
Fujii Masao
-
Robert Haas authored
Shigeru Hanada, with some additional wordsmithing by me
-
- Jun 12, 2011
-
-
Robert Haas authored
Shigeru Hanada, with a minor grammar correction.
-
- Jun 10, 2011
-
-
Bruce Momjian authored
-
Tom Lane authored
Also do some desultory copy-editing on the notes.
-
- Jun 09, 2011
-
-
Magnus Hagander authored
Using -s when registering a service will now suppress the application eventlog entries stating that the service is starting and started. MauMau
-
Peter Eisentraut authored
The documentation of the columns collection_type_identifier and dtd_identifier was wrong. This effectively reverts commits 8e1ccad5 and 57352df6 and updates the name array_type_identifier (the name in SQL:1999) to collection_type_identifier. closes bug #5926
-
- Jun 08, 2011
-
-
Tom Lane authored
This is an ugly hack to get around the fact that significant parts of the core backend assume they don't need to worry about passing collation to equality and hashing functions. That's true for the core string datatypes, but citext should ideally have equality behavior that depends on the specified collation's LC_CTYPE. However, there's no chance of fixing the core before 9.2, so we'll have to live with this compromise arrangement for now. Per bug #6053 from Regina Obe. The code changes in this commit should be reverted in full once the core code is up to speed, but be careful about reverting the docs changes: I fixed a number of obsolete statements while at it.
-
Peter Eisentraut authored
Since start/stop/restart/reload/status is a kind of standard command set, it seems odd to insert the special-purpose "promote" in between the closely related "restart" and "reload". So put it after "status" in code and documentation. Put the documentation of the -U option in some sensible place. Rewrite the synopsis sentence in help and documentation to make it less of a growing mouthful.
-
- Jun 04, 2011
-
-
Peter Eisentraut authored
found by Thom Brown
-
Peter Eisentraut authored
Marc Cousin
-
Peter Eisentraut authored
Marc Cousin, Satoshi Nagayasu
-
- Jun 03, 2011
-
-
Peter Eisentraut authored
This is the original DocBook SGML limit, but apparently most installations have changed it or ignore it, which is why few people have run into this problem. pointed out by Brendan Jurd
-
Bruce Momjian authored
Marco Nenciarini
-
- Jun 02, 2011
-
-
Peter Eisentraut authored
Josh Kupershmidt
-
- Jun 01, 2011
-
-
Peter Eisentraut authored
-
- May 31, 2011
-
-
Tom Lane authored
Apparently sane-looking penalty code might return small negative values, for example because of roundoff error. This will confuse places like gistchoose(). Prevent problems by clamping negative penalty values to zero. (Just to be really sure, I also made it force NaNs to zero.) Back-patch to all supported branches. Alexander Korotkov
-
Peter Eisentraut authored
This has already been the case for the most part; just some cases had slipped through.
-
Tom Lane authored
It turns out the reason we hadn't found out about the portability issues with our credential-control-message code is that almost no modern platforms use that code at all; the ones that used to need it now offer getpeereid(), which we choose first. The last holdout was NetBSD, and they added getpeereid() as of 5.0. So far as I can tell, the only live platform on which that code was being exercised was Debian/kFreeBSD, ie, FreeBSD kernel with Linux userland --- since glibc doesn't provide getpeereid(), we fell back to the control message code. However, the FreeBSD kernel provides a LOCAL_PEERCRED socket parameter that's functionally equivalent to Linux's SO_PEERCRED. That is both much simpler to use than control messages, and superior because it doesn't require receiving a message from the other end at just the right time. Therefore, add code to use LOCAL_PEERCRED when necessary, and rip out all the credential-control-message code in the backend. (libpq still has such code so that it can still talk to pre-9.1 servers ... but eventually we can get rid of it there too.) Clean up related autoconf probes, too. This means that libpq's requirepeer parameter now works on exactly the same platforms where the backend supports peer authentication, so adjust the documentation accordingly.
-
- May 30, 2011
-
-
Magnus Hagander authored
We only support up to version 7.0, so don't recommend upgrading past it. The rest of the documentation around this was already updated, but one spot was missed.
-
Peter Eisentraut authored
-
- May 29, 2011
-
-
Peter Eisentraut authored
The previous claim when these parameters could be changed was incorrect. Fujii Masao
-
Peter Eisentraut authored
-
- May 27, 2011
-
-
Peter Eisentraut authored
This is currently the same as the condition name, so it doesn't add any value, only clutter.
-
- May 25, 2011
-
-
Peter Eisentraut authored
For the --help output and reference pages of pg_dump, pg_dumpall, pg_restore, put the options in some consistent, mostly alphabetical, and consistent order, rather than newest option last or something like that.
-
- May 22, 2011
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- May 19, 2011
-
-
Peter Eisentraut authored
Other similar options also use the plural form.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- May 18, 2011
-
-
Peter Eisentraut authored
Since contrib is a relative directory specification, a leading slash is inappropriate.
-
- May 16, 2011
-
-
Bruce Momjian authored
-
Bruce Momjian authored
checks for PGHOST and PGHOSTADDR.
-