summaryrefslogtreecommitdiff
path: root/src/include/utils
AgeCommit message (Expand)Author
2016-08-14Remove bogus dependencies on NUMERIC_MAX_PRECISION.Tom Lane
2016-03-15Cope if platform declares mbstowcs_l(), but not locale_t, in <xlocale.h>.Tom Lane
2015-09-04Fix subtransaction cleanup after an outer-subtransaction portal fails.Tom Lane
2015-08-27Add a small cache of locks owned by a resource owner in ResourceOwner.Tom Lane
2015-08-04Fix bogus "out of memory" reports in tuplestore.c.Tom Lane
2015-06-25Fix the logic for putting relations into the relcache init file.Tom Lane
2015-06-07Use a safer method for determining whether relcache init file is stale.Tom Lane
2014-10-16Support timezone abbreviations that sometimes change.Tom Lane
2014-05-06Remove tabs after spaces in C commentsBruce Momjian
2014-02-17Predict integer overflow to avoid buffer overruns.Noah Misch
2014-02-17Fix handling of wide datetime input/output.Noah Misch
2013-07-07Fix include-guardMagnus Hagander
2013-03-05Fix to_char() to use ASCII-only case-folding rules where appropriate.Tom Lane
2012-12-17Fix failure to ignore leftover temp tables after a server crash.Tom Lane
2012-07-10Back-patch fix for extraction of fixed prefixes from regular expressions.Tom Lane
2012-07-09Refactor pattern_fixed_prefix() to avoid dealing in incomplete patterns.Tom Lane
2012-05-30Expand the allowed range of timezone offsets to +/-15:59:59 from Greenwich.Tom Lane
2012-02-15Run a portal's cleanup hook immediately when pushing it to FAILED state.Tom Lane
2012-01-12Fix CLUSTER/VACUUM FULL for toast values owned by recently-updated rows.Tom Lane
2011-12-12Revert the behavior of inet/cidr functions to not unpack the arguments.Heikki Linnakangas
2011-11-08Make DatumGetInetP() unpack inet datums with a 1-byte header, and addHeikki Linnakangas
2011-10-05Improve and simplify CREATE EXTENSION's management of GUC variables.Tom Lane
2011-08-16Fix race condition in relcache init file invalidation.Tom Lane
2011-07-16Add an errdetail_internal() ereport auxiliary routine.Tom Lane
2011-07-08Fix another oversight in logging of changes in postgresql.conf settings.Tom Lane
2011-07-07Reclassify replication-related GUC variables as "master" and "standby".Tom Lane
2011-07-06Remove assumptions that not-equals operators cannot be in any opclass.Tom Lane
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-06-03Fix failure to check whether a rowtype's component types are sortable.Tom Lane
2011-05-11Split PGC_S_DEFAULT into two values, for true boot_val vs computed default.Tom Lane
2011-04-28Use a macro variable PG_PRINTF_ATTRIBUTE for the style used for checking prin...Andrew Dunstan
2011-04-25Remove partial and undocumented GRANT .. FOREIGN TABLE support.Robert Haas
2011-04-23Fix char2wchar/wchar2char to support collations properly.Tom Lane
2011-04-12Pass collations to functions in FunctionCallInfoData, not FmgrInfo.Tom Lane
2011-04-11Teach pattern_fixed_prefix() about collations.Tom Lane
2011-04-11Fix the size of predicate lock manager's shared memory hash tables at creation.Heikki Linnakangas
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-04-07Revise the API for GUC variable assign hooks.Tom Lane
2011-04-05Add casts from int4 and int8 to numeric.Robert Haas
2011-04-01Support comments on FOREIGN DATA WRAPPER and SERVER objects.Robert Haas
2011-03-26Clean up a few failures to set collation fields in expression nodes.Tom Lane
2011-03-14Remove duplicate time-based macros recently added.Bruce Momjian
2011-03-12Make all comparisons done for/with statistics use the default collation.Tom Lane
2011-03-12Use macros for time-based constants, rather than constants.Bruce Momjian
2011-03-09Adjust the permissions required for COMMENT ON ROLE.Tom Lane
2011-03-04Allow non-superusers to create (some) extensions.Tom Lane
2011-03-03Run a portal's cleanup hook immediately when pushing it to DONE state.Tom Lane
2011-02-28Rearrange snapshot handling to make rule expansion more consistent.Tom Lane
2011-02-27Refactor the executor's API to support data-modifying CTEs better.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane