- Sep 08, 2011
-
-
Heikki Linnakangas authored
When building a GiST index that doesn't fit in cache, buffers are attached to some internal nodes in the index. This speeds up the build by avoiding random I/O that would otherwise be needed to traverse all the way down the tree to the find right leaf page for tuple. Alexander Korotkov
-
Tom Lane authored
Also set the documented release date to 2011-09-12.
-
- Sep 07, 2011
-
-
Bruce Momjian authored
because its internal format was changed in 8.4. Backpatch to 9.0 and 9.1. Report by depesz, diagnosis by Tom.
-
Bruce Momjian authored
they wrap toward year 2020, rather than the inconsistent behavior we had before.
-
Bruce Momjian authored
Backpatch to 9.0 and 9.1. Patch from Josh Kupershmidt.
-
Bruce Momjian authored
fields. Backpatch to 9.0 and 9.1. Report from Pavel Stehule, patch from Josh Kupershmidt
-
Bruce Momjian authored
Per Peter.
-
- Sep 06, 2011
-
-
Bruce Momjian authored
pgpass. Backpatch to 9.1.
-
Bruce Momjian authored
Backpatch to 9.0 and 9.1.
-
Bruce Momjian authored
Backpatch to 9.0 and 9.1. Report from depstein@alliedtesting.com.
-
Tom Lane authored
We've now seen more than one gripe from somebody who didn't get the memo about how to install contrib modules in 9.1. Try to make it a little more prominent that you aren't supposed to call the scripts directly anymore.
-
Tom Lane authored
This example wasn't updated when we changed the behavior of bpcharlen() in 8.0, nor when we changed the number of parameters taken by the bpchar() cast function in 7.3. Per report from lsliang.
-
Bruce Momjian authored
processes. Backpatch to 9.1 and 9.0. Submitted by Anton Yuzhaninov, confirmed by Robert Haas
-
Bruce Momjian authored
-
- Sep 05, 2011
-
-
Bruce Momjian authored
Backpatch to 9.1.
-
Bruce Momjian authored
characters. Backpatch to 9.0 and 9.1.
-
- Sep 01, 2011
-
-
Robert Haas authored
KaiGai Kohei
-
- Aug 31, 2011
-
-
Heikki Linnakangas authored
lowercase earlier, but documentation was not updated. Update the docs. Fujii Masao
-
- Aug 30, 2011
-
-
Peter Eisentraut authored
Josh Kupershmidt
-
Robert Haas authored
-
Robert Haas authored
Josh Kupershmidt, with some further editing by me.
-
- Aug 27, 2011
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
In PostgreSQL, this is included in the SELECT privilege, so show YES or NO depending on whether SELECT is granted.
-
Peter Eisentraut authored
-
- Aug 26, 2011
-
-
Tom Lane authored
These changes allow backtick command evaluation and psql variable interpolation to happen on substrings of a single meta-command argument. Formerly, no such evaluations happened at all if the backtick or colon wasn't the first character of the argument, and we considered an argument completed as soon as we'd processed one backtick, variable reference, or quoted substring. A string like 'FOO'BAR was thus taken as two arguments not one, not exactly what one would expect. In the new coding, an argument is considered terminated only by unquoted whitespace or backslash. Also, clean up a bunch of omissions, infelicities and outright errors in the psql documentation of variables and metacommand argument syntax.
-
Tom Lane authored
As in the backend, the implementation actually accepts any non-ASCII character, but we only document that you can use letters.
-
- Aug 25, 2011
-
-
Robert Haas authored
Noted by Hitoshi Harada.
-
- Aug 24, 2011
-
-
Tom Lane authored
The previous coding resulted in contrib modules unintentionally overriding the use of CONTRIB_TESTDB. There seems no particularly good reason to allow that (after all, the makefile can set CONTRIB_TESTDB if that's really what it intends). In passing, document REGRESS_OPTS where the other pgxs.mk options are documented. Back-patch to 9.1 --- in prior versions, there were no cases of contrib modules setting REGRESS_OPTS without including the --dbname switch, so while the coding was fragile there was no actual bug.
-
- Aug 23, 2011
-
-
Heikki Linnakangas authored
Fujii Masao
-
- Aug 18, 2011
-
-
Tom Lane authored
Also do another pass of copy-editing.
-
- Aug 17, 2011
-
-
Magnus Hagander authored
Per comment form Fujii Masao.
-
Peter Eisentraut authored
Josh Kupershmidt
-
- Aug 14, 2011
-
-
Peter Eisentraut authored
-
- Aug 11, 2011
-
-
Bruce Momjian authored
Backpatch to 9.1, obviously.
-
Robert Haas authored
Along the way, rename "Options" to "FDW Options" in various places for consistency and clarity. Shigeru Hanada
-
Robert Haas authored
Instead of displaying comments on an arbitrary subset of the object types which support them, make \dd display comments on exactly those object types which don't have their own backlash commands. We now regard the display of comments as properly the job of the relevant backslash command (though many of them do so only in verbose mode) rather than something that \dd should be responsible for. However, a handful of object types have no backlash command, so make \dd give information about those. Josh Kupershmidt
-
Tom Lane authored
The latch infrastructure is now capable of detecting all cases where the walsender loop needs to wake up, so there is no reason to have an arbitrary timeout. Also, modify the walsender loop logic to follow the standard pattern of ResetLatch, test for work to do, WaitLatch. The previous coding was both hard to follow and buggy: it would sometimes busy-loop despite having nothing available to do, eg between receipt of a signal and the next time it was caught up with new WAL, and it also had interesting choices like deciding to update to WALSNDSTATE_STREAMING on the strength of information known to be obsolete.
-
- Aug 08, 2011
-
-
Robert Haas authored
The relevant backslash commands already exist, so we're just adding an additional column. With this commit, all objects that have psql backslash commands and accept comments should now display those comments at least in verbose mode. Josh Kupershmidt, with doc additions by me.
-
Robert Haas authored
\dc and \dD now accept a "+" option, which will cause the comments to be displayed. Along the way, correct a few oversights in the previous commit in this area, 3b17efdf - namely, (1) when \dL+ is used, make description still be the last column, for consistency with what we've done elsewhere; and (2) document the difference between \dC and \dC+. Josh Kupershmidt, with a couple of doc changes by me.
-
Robert Haas authored
Also, handle failure better: don't just blindly keep trying to delete stuff after the transaction has already failed. Tim Lewis, reviewed by Josh Kupershmidt, with further hacking by me.
-