- Sep 22, 2010
-
-
Tom Lane authored
Also do some further work in the back branches, where quite a bit wasn't covered by Magnus' original back-patch.
-
Magnus Hagander authored
-
- Sep 20, 2010
-
-
Magnus Hagander authored
-
- Sep 16, 2010
-
-
Tom Lane authored
There was an incorrect Assert in hstoreValidOldFormat(), which would cause immediate core dumps when attempting to work with pre-9.0 hstore data, but of course only in an assert-enabled build. Also, ghstore_decompress() incorrectly applied DatumGetHStoreP() to a datum that wasn't actually an hstore, but rather a ghstore (ie, a gist signature bitstring). That used to be harmless, but could now result in misbehavior if the hstore format conversion code happened to trigger. In reality, since ghstore is not marked toastable (and doesn't need to be), this function is useless anyway; we can lobotomize it down to returning the passed-in pointer. Both bugs found by Andrew Gierth, though this isn't exactly his proposed patch.
-
- Sep 07, 2010
-
-
Bruce Momjian authored
collation/encoding to match English when reading controldata. This now matches the English variable setting used by pg_regress.c. Backpatch to 9.0.X.
-
- Aug 23, 2010
-
-
Tom Lane authored
Erik Rijkers
-
- Aug 19, 2010
-
-
Peter Eisentraut authored
at end of files.
-
- Aug 13, 2010
-
-
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
-
- Aug 12, 2010
-
-
Tom Lane authored
out immediately on any out-of-memory condition. It's rather pointless to imagine that pgbench will be able to continue usefully after a malloc failure, and in any case there were a number of unchecked mallocs.
-
Tom Lane authored
times) to pgbench. Florian Pflug, reviewed by Greg Smith
-
- Aug 11, 2010
-
-
Tom Lane authored
pairs that can be handled by xslt_process(). There is much else to do here, but this patch seems useful in its own right for as long as this code survives. Pavel Stehule, reviewed by Mike Fowler
-
- Aug 05, 2010
-
-
Robert Haas authored
- Rename TSParserGetPrsid to get_ts_parser_oid. - Rename TSDictionaryGetDictid to get_ts_dict_oid. - Rename TSTemplateGetTmplid to get_ts_template_oid. - Rename TSConfigGetCfgid to get_ts_config_oid. - Rename FindConversionByName to get_conversion_oid. - Rename GetConstraintName to get_constraint_oid. - Add new functions get_opclass_oid, get_opfamily_oid, get_rewrite_oid, get_rewrite_oid_without_relid, get_trigger_oid, and get_cast_oid. The name of each function matches the corresponding catalog. Thanks to KaiGai Kohei for the review.
-
- Aug 03, 2010
-
-
Robert Haas authored
Jeff Davis, with minor adjustments by me.
-
Robert Haas authored
Based on a patch by, and further ideas from, Alexander Korotkov.
-
- Aug 02, 2010
-
-
Robert Haas authored
Jeff Davis, with slight editorialization by me.
-
- Jul 30, 2010
-
-
Robert Haas authored
Review by Tom Lane.
-
- Jul 29, 2010
-
-
Robert Haas authored
Operating directly on the underlying varlena saves palloc and memcpy overhead, which testing shows to be significant. Extracted from a larger patch by Alexander Korotkov.
-
- Jul 28, 2010
-
-
Peter Eisentraut authored
-
Robert Haas authored
Review by Dave Page.
-
- Jul 25, 2010
-
-
Bruce Momjian authored
migrations. Backpatch to 9.0.
-
Bruce Momjian authored
where the oid is not preserved by pg_upgrade (everything but pg_type). Update documentation. Per bug report from depstein@alliedtesting.com.
-
- Jul 20, 2010
-
-
Robert Haas authored
Per buildfarm.
-
- Jul 13, 2010
-
-
Bruce Momjian authored
because of file access limitations on that platform.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- Jul 09, 2010
-
-
Bruce Momjian authored
copy mode, per report from depstein@alliedtesting.com. Patch suggestion from Magnus. Backpatch to 9.0.X.
-
- Jul 06, 2010
-
-
Bruce Momjian authored
-
Tom Lane authored
supposing that they should set SHLIB_LINK rather than LDFLAGS_SL. Since these don't go through Makefile.shlib that was a no-op on most platforms. Also regularize the few platform-specific Makefiles that did pay attention to SHLIB_LINK: it seems that the real value of that is to pull in BE_DLLLIBS, so do that instead. Per buildfarm failures on cygwin.
-
- Jul 03, 2010
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
from Tom.
-
- Jul 02, 2010
-
-
Robert Haas authored
David Wheeler, with one small correction by me.
-
- Jul 01, 2010
-
-
Tom Lane authored
-
Bruce Momjian authored
-
- Jun 23, 2010
-
-
Bruce Momjian authored
-
- Jun 22, 2010
-
-
Bruce Momjian authored
output to the same file, because it is impossible. Also set user name for pg_dumpall in pg_upgrade.
-
Robert Haas authored
This is an oversight in my previous patch to deprecate => as an operator name. Per buildfarm.
-
- Jun 18, 2010
-
-
Robert Haas authored
This is not yet in any released version, so we still have the option to change the name. We may want to reserve the token => in a future release.
-
- Jun 17, 2010
-
-
Tom Lane authored
sane places, make messages follow project's message style guidelines. Also, avoid closedir(NULL). Fujii Masao and Tom Lane
-