summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Support window functions a la SQL:2008.Tom Lane2008-12-2852-251/+4704
* Make a couple of small changes to the tuplestore API, for the benefit of theTom Lane2008-12-272-26/+62
* Change the name of dtrace wal tracepoints:Bruce Momjian2008-12-242-6/+6
* Add missing semicolon, per buildfarm results. Martin PihlakTom Lane2008-12-201-2/+2
* Fix various confusions of pointers and OIDs, unsafe assumptions about nulls,Tom Lane2008-12-201-17/+32
* Don't use OidIsValid to check the return value of transformGenericOptions,Heikki Linnakangas2008-12-201-10/+10
* Add a new column proiswindow to pg_proc. It doesn't actually do anythingTom Lane2008-12-191-1/+3
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-1924-42/+3728
* When we added the ability to have zero-element ARRAY[] constructs by adding anTom Lane2008-12-191-1/+9
* Fix oversight in my recent patch to allow ExecMakeFunctionResult to handleTom Lane2008-12-181-18/+18
* Code review for function default parameters patch. Fix numerous problems asTom Lane2008-12-1811-298/+515
* Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas2008-12-175-56/+88
* The attached patch contains a couple of fixes in the existing probes andBruce Momjian2008-12-175-37/+79
* Make heap_update() set newtup->t_tableOid correctly, for consistency withTom Lane2008-12-161-1/+2
* Department of second thoughts: further experimentation with CREATE OR REPLACETom Lane2008-12-161-6/+12
* Code review for CREATE OR REPLACE VIEW patch. Do things in a saner order toTom Lane2008-12-152-31/+40
* Arrange for the pg_foo_is_visible and has_foo_privilege families of functionsTom Lane2008-12-152-7/+143
* Reduce the scaling factor for attstattarget to number-of-lexemes from 100Tom Lane2008-12-151-4/+4
* Remove our dependencies on MB_CUR_MAX in favor of believing thatTom Lane2008-12-151-10/+34
* Restore enforce_generic_type_consistency's pre-8.3 behavior of allowing anTom Lane2008-12-141-8/+28
* Replace both send and receive BIO routines in the SSL code with our own,Magnus Hagander2008-12-141-15/+41
* Increase the default value of default_statistics_target from 10 to 100,Tom Lane2008-12-135-15/+15
* Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's uselessTom Lane2008-12-134-35/+13
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-134-13/+142
* To reduce confusion over whether VACUUM FULL is needed for anti-wraparoundTom Lane2008-12-111-3/+3
* The macros NULL_DEV and DEVNULL were both used to work aroundPeter Eisentraut2008-12-112-4/+4
* Append major version number and for libraries soname major version numberPeter Eisentraut2008-12-112-4/+4
* Tweak the tree descent loop in fsm_search_avail to not look at theTom Lane2008-12-101-12/+15
* Revert SIGUSR1 multiplexing patch, per Tom's objection.Heikki Linnakangas2008-12-097-110/+41
* Provide support for multiplexing SIGUSR1 signal. The upcoming synchronousHeikki Linnakangas2008-12-097-41/+110
* Teach pgstat_vacuum_stat to not bother scanning pg_proc in the common caseTom Lane2008-12-081-33/+38
* Don't try to optimize EXISTS subqueries with empty FROM-lists: we need toTom Lane2008-12-081-1/+8
* Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian2008-12-063-40/+79
* MAPSIZE macro needs to use MAXALIGN(SizeOfPageHeaderData) instead ofHeikki Linnakangas2008-12-061-2/+2
* Better descriptions in pg_get_keywords(), consistent with the documentationPeter Eisentraut2008-12-051-5/+5
* Default values for function argumentsPeter Eisentraut2008-12-0411-40/+292
* Fix a couple of snapshot management bugs in the new ResourceOwner world:Alvaro Herrera2008-12-043-18/+73
* Utilize the visibility map in autovacuum, too. There was an oversight inHeikki Linnakangas2008-12-045-13/+12
* Initialize GISTScanOpaque->qual_ok even if there is no conditions.Teodor Sigaev2008-12-041-2/+3
* Properly unregister OpenSSL callbacks when libpq is done withMagnus Hagander2008-12-031-26/+1
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-039-37/+820
* Small comment fixes.Heikki Linnakangas2008-12-031-4/+4
* If pg_stop_backup() is called just after switching to a new xlog file,Heikki Linnakangas2008-12-031-4/+10
* 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
* Fix an oversight in the code that makes transitive-equality deductions fromTom Lane2008-12-013-6/+13
* Modify the new to_timestamp implementation so that end-of-format-stringHeikki Linnakangas2008-12-011-2/+3
* Ensure that the contents of a holdable cursor don't depend on out-of-lineTom Lane2008-12-013-15/+137
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-3010-66/+87
* Add a "LIKE = typename" clause to CREATE TYPE for base types. This allowsTom Lane2008-11-301-85/+166