summaryrefslogtreecommitdiff
path: root/src/backend/utils
Commit message (Expand)AuthorAgeFilesLines
* Make a couple of small changes to the tuplestore API, for the benefit of theTom Lane2008-12-271-21/+42
* Change the name of dtrace wal tracepoints:Bruce Momjian2008-12-241-3/+3
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-192-2/+384
* When we added the ability to have zero-element ARRAY[] constructs by adding anTom Lane2008-12-191-1/+9
* Code review for function default parameters patch. Fix numerous problems asTom Lane2008-12-182-50/+58
* The attached patch contains a couple of fixes in the existing probes andBruce Momjian2008-12-172-26/+31
* Arrange for the pg_foo_is_visible and has_foo_privilege families of functionsTom Lane2008-12-151-6/+83
* Remove our dependencies on MB_CUR_MAX in favor of believing thatTom Lane2008-12-151-10/+34
* Increase the default value of default_statistics_target from 10 to 100,Tom Lane2008-12-132-3/+3
* Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's uselessTom Lane2008-12-131-3/+2
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-131-6/+20
* Append major version number and for libraries soname major version numberPeter Eisentraut2008-12-111-2/+2
* Better descriptions in pg_get_keywords(), consistent with the documentationPeter Eisentraut2008-12-051-5/+5
* Default values for function argumentsPeter Eisentraut2008-12-041-8/+78
* Fix a couple of snapshot management bugs in the new ResourceOwner world:Alvaro Herrera2008-12-041-14/+54
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-031-2/+11
* Use PG_GETARG_TEXT_PP instead of PG_GETARG_TEXT_P in the newHeikki Linnakangas2008-12-021-9/+9
* Minor code embellishments.Alvaro Herrera2008-12-021-50/+43
* Modify the new to_timestamp implementation so that end-of-format-stringHeikki Linnakangas2008-12-011-2/+3
* Remove inappropriate memory context switch in shutdown_MultiFuncCall().Tom Lane2008-11-301-2/+1
* Rely on relcache invalidation to update the cached size of the FSM.Heikki Linnakangas2008-11-261-8/+8
* Use ResourceOwners in the snapshot manager, instead of attempting to track themAlvaro Herrera2008-11-253-183/+147
* Fix a few more format argument warnings.Magnus Hagander2008-11-211-3/+3
* Make the enumvals column of pg_settings be text[] instead of justMagnus Hagander2008-11-211-12/+16
* Fix compiler warning "res may be used uninitialized in this function".Teodor Sigaev2008-11-191-2/+2
* Fix define_custom_variable so that SUSET custom variables behaveTom Lane2008-11-191-2/+25
* Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane2008-11-191-124/+158
* Replace plain-memory ordered array by binary tree in ts_stat() function.Teodor Sigaev2008-11-171-208/+200
* Actually, instead of whining about how type internal might not safely storeTom Lane2008-11-141-9/+5
* Implement the basic form of UNNEST, ie unnest(anyarray) returns setofTom Lane2008-11-141-1/+105
* Minor code clarity improvements in array_agg functions, and add a commentTom Lane2008-11-141-9/+33
* array_agg aggregate function, as per SQL:2008, but without ORDER BY clausePeter Eisentraut2008-11-131-1/+33
* array_length() function, and for SQL compatibility also cardinality()Peter Eisentraut2008-11-121-1/+29
* Clean up the ancient decision to show only two fractional-seconds digitsTom Lane2008-11-121-546/+298
* Add an explicit caution about how to use pg_do_encoding_conversion withTom Lane2008-11-111-1/+7
* Add support for input and output of interval values formatted per ISO 8601;Tom Lane2008-11-114-18/+374
* Fix a case of string building.Alvaro Herrera2008-11-101-2/+2
* Fix bugs in sqlchar_to_unicode and unicode_to_sqlchar: both were measuringTom Lane2008-11-101-7/+18
* Fix 'Q' format char parsing in the new to_timestamp() code. Used to crash.Heikki Linnakangas2008-11-101-3/+4
* pg_do_encoding_conversion cannot return NULL (at least not unless the inputTom Lane2008-11-101-3/+1
* Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane2008-11-101-1/+12
* Replace pg_class.reltriggers with relhastriggers, which is just a boolean hintTom Lane2008-11-091-3/+3
* Add a new GUC variable called "IntervalStyle" that decouples interval outputTom Lane2008-11-096-50/+225
* Fix recently added code for SQL years-months interval syntax so thatTom Lane2008-11-081-2/+2
* This maneuver really requires a comment ...Tom Lane2008-11-051-5/+10
* change fix for suppress_redundant_updates_trigger() where relation has Oids, ...Andrew Dunstan2008-11-051-6/+5
* fix suppress_redundant_updates_trigger() where relation has Oids, per gripe f...Andrew Dunstan2008-11-051-1/+8
* ADD array_ndims functionPeter Eisentraut2008-11-041-1/+17
* Fix compiler warnings (including a seriously bogus elog call); minorTom Lane2008-11-041-18/+22
* Use bool for a boolean flag.Tom Lane2008-11-031-6/+7