- Aug 25, 2010
-
-
Peter Eisentraut authored
-
Tom Lane authored
-
Tom Lane authored
Note: as usual, bug fixes that were also applied in back branches are not considered material to include in a new major release's notes.
-
Tom Lane authored
-
- Aug 24, 2010
-
-
Bruce Momjian authored
Backpatch to 9.0.X.
-
Bruce Momjian authored
Josh Berkus
-
Bruce Momjian authored
default is low because of pg_clog file removal. Backpatch to 9.0.X.
-
Itagaki Takahiro authored
Pavel Stehule, reviewed by me.
-
- Aug 23, 2010
-
-
Tom Lane authored
This is mostly about grammar, style, and presentation, though I did find a few small factual errors.
-
- Aug 22, 2010
-
-
Bruce Momjian authored
We already mentioned xid wraparound.
-
- Aug 21, 2010
-
-
Magnus Hagander authored
-
- Aug 20, 2010
-
-
Tom Lane authored
Per Thom Brown.
-
Tom Lane authored
Per gripe from Fujii Masao, though this is not exactly his proposed patch. Categorize as DEVELOPER_OPTIONS and set context PGC_SIGHUP, as per Fujii, but set the default to LOG because higher values aren't really sensible (see the code for trace_recovery()). Fix the documentation to agree with the code and to try to explain what the variable actually does. Get rid of no-op calls trace_recovery(LOG), which accomplish nothing except to demonstrate that this option confuses even its author.
-
- Aug 19, 2010
-
-
Peter Eisentraut authored
at end of files.
-
- Aug 17, 2010
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- Aug 16, 2010
-
-
Tom Lane authored
-
- Aug 15, 2010
-
-
Tom Lane authored
Boszormenyi Zoltan.
-
Tom Lane authored
-
Tom Lane authored
Robert Haas, per gripe from Erik Rijkers
-
Robert Haas authored
Kevin Grittner, with markup adjustments.
-
- Aug 14, 2010
-
-
Tom Lane authored
look at a function but don't wish to fire up an editor. Pavel Stehule, reviewed by Jan Urbanski
-
Robert Haas authored
Update the documentation, and back out a few ill-considered changes whose folly I failed to realize for failure to read the documentation.
-
- Aug 13, 2010
-
-
Robert Haas authored
This allows us to reliably remove all leftover temporary relation files on cluster startup without reference to system catalogs or WAL; therefore, we no longer include temporary relations in XLOG_XACT_COMMIT and XLOG_XACT_ABORT WAL records. Since these changes require including a backend ID in each SharedInvalSmgrMsg, the size of the SharedInvalidationMessage.id field has been reduced from two bytes to one, and the maximum number of connections has been reduced from INT_MAX / 4 to 2^23-1. It would be possible to remove these restrictions by increasing the size of SharedInvalidationMessage by 4 bytes, but right now that doesn't seem like a good trade-off. Review by Jaime Casanova and Tom Lane.
-
Tom Lane authored
functions to the core XML code. Per discussion, the former depends on XMLOPTION while the others do not. These supersede a version previously offered by contrib/xml2. Mike Fowler, reviewed by Pavel Stehule
-
Robert Haas authored
Thom Brown
-
- Aug 12, 2010
-
-
Tom Lane authored
times) to pgbench. Florian Pflug, reviewed by Greg Smith
-
Bruce Momjian authored
-
Tom Lane authored
and the editor's cursor will be initially placed on that line. In \e the lines are counted with respect to the query buffer, while in \ef they are counted with line 1 = first line of function body. These choices are useful for positioning the cursor on the line of a previously-reported error. To avoid assumptions about what switch the user's editor takes for this purpose, invent a new psql variable EDITOR_LINENUMBER_SWITCH with (at present) no default value. One incompatibility from previous behavior is that "\e 1234" will now take "1234" as a line number not a file name. There are at least two ways to select a numerically-named file if you really want to. Pavel Stehule, reviewed by Jan Urbanski, with further editing by Robert Haas and Tom Lane
-
- Aug 11, 2010
-
-
Bruce Momjian authored
-
Robert Haas authored
Again, back-patch all the way to 7.4.
-
Robert Haas authored
ecpgerrno.h hasn't materially changed since PostgreSQL 7.4, so this has been wrong for a very long time. Back-patch all the way. Satoshi Nagayasu
-
- Aug 10, 2010
-
-
Tom Lane authored
better handling of NULL elements within the arrays. The third parameter is a string that should be used to represent a NULL element, or should be translated into a NULL element, respectively. If the third parameter is NULL it behaves the same as the two-parameter form. There are two incompatible changes in the behavior of the two-parameter form of string_to_array. First, it will return an empty (zero-element) array rather than NULL when the input string is of zero length. Second, if the field separator is NULL, the function splits the string into individual characters, rather than returning NULL as before. These two changes make this form fully compatible with the behavior of the new three-parameter form. Pavel Stehule, reviewed by Brendan Jurd
-
Peter Eisentraut authored
-
Peter Eisentraut authored
surrounding text refers to the example inline.
-
Robert Haas authored
Per observation from Tom Lane that the previous patch to these files was not consistent with what is done elsewhere in the docs.
-
- Aug 09, 2010
-
-
Robert Haas authored
Daniele Varrazzo
-
Tom Lane authored
can be caught in the same places that could catch an ordinary RAISE ERROR in the same location. The previous coding insisted on throwing the error from the block containing the active exception handler; which is arguably more surprising, and definitely unlike Oracle's behavior. Not back-patching, since this is a pretty obscure corner case. The risk of breaking somebody's code in a minor version update seems to outweigh any possible benefit. Piyush Newe, reviewed by David Fetter
-
- Aug 08, 2010
-
-
Tom Lane authored
it offers support for namespace mapping. Mike Fowler, reviewed by David Fetter
-
Tom Lane authored
statistics counts. These numbers are being accumulated but haven't yet been transmitted to the collector (and won't be, until the transaction ends). For some purposes, though, it's handy to be able to look at them. Joel Jacobson, reviewed by Itagaki Takahiro
-