summaryrefslogtreecommitdiff
path: root/src/backend/commands
Commit message (Expand)AuthorAgeFilesLines
* Rework temp_tablespaces patch so that temp tablespaces are assigned separatelyTom Lane2007-06-071-99/+130
* Clarify some error messages about duplicate things.Peter Eisentraut2007-06-031-5/+5
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-033-19/+213
* Minimal message corrections found by spell checker.Peter Eisentraut2007-06-021-3/+3
* Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane2007-06-011-39/+49
* Make some messages more consistentPeter Eisentraut2007-05-311-2/+2
* Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane2007-05-303-45/+74
* Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane2007-05-252-47/+70
* Fix dumb compile error in the last patch.Alvaro Herrera2007-05-191-1/+2
* Have CLUSTER advance the table's relfrozenxid. The new frozen point is theAlvaro Herrera2007-05-182-10/+30
* Move the tuple freezing point in CLUSTER to a point further back in the past,Alvaro Herrera2007-05-173-11/+18
* Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, toAlvaro Herrera2007-05-161-3/+3
* Get rid of the pg_shdepend entry for a TOAST table; it's unnecessary sinceTom Lane2007-05-141-3/+4
* Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane2007-05-122-8/+58
* Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane2007-05-112-21/+64
* Support arrays of composite types, including the rowtypes of regular tablesTom Lane2007-05-112-85/+166
* Add a line to the EXPLAIN ANALYZE output for a Sort node, showing theTom Lane2007-05-041-1/+28
* Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane2007-05-021-2/+14
* Implement rate-limiting logic on how often backends will attempt to sendTom Lane2007-04-302-36/+8
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-274-135/+43
* Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane2007-04-261-73/+80
* Rename the newly-added commands for discarding session state.Neil Conway2007-04-262-2/+73
* Silence compiler warnings, per Bruce.Alvaro Herrera2007-04-192-4/+4
* Enable configurable log of autovacuum actions. Initial patch from SimonAlvaro Herrera2007-04-182-2/+92
* Update docs/error message for CSV quote/escape --- must be ASCII.Bruce Momjian2007-04-181-3/+3
* Update error message for COPY with a multi-byte delimiter.Bruce Momjian2007-04-181-2/+2
* Add a multi-worker capability to autovacuum. This allows multiple workerAlvaro Herrera2007-04-161-1/+4
* Make plancache store cursor options so it can pass them to planner duringTom Lane2007-04-161-1/+4
* Expose more cursor-related functionality in SPI: specifically, allowTom Lane2007-04-164-12/+12
* Cancel pending fsync requests during WAL replay of DROP DATABASE, per bugTom Lane2007-04-121-1/+4
* RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway2007-04-123-7/+41
* Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane2007-04-082-66/+95
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-061-3/+3
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-023-24/+130
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-292-57/+75
* Allow non-superuser database owners to create procedural languages.Tom Lane2007-03-262-27/+141
* Fix plancache so that any required replanning is done with the sameTom Lane2007-03-231-3/+7
* Allow DROP TABLESPACE to succeed (with a warning) if the pg_tblspc symlinkTom Lane2007-03-221-2/+15
* Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck2007-03-192-33/+164
* Fix a longstanding bug in VACUUM FULL's handling of update chains. The codeTom Lane2007-03-141-2/+44
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-1312-506/+570
* Fix vac_update_relstats to ensure it always sends a relcache inval message,Tom Lane2007-03-081-2/+12
* Revert temp_tablespaces because of coding problems, per Tom.Bruce Momjian2007-03-063-154/+5
* Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway2007-03-031-19/+7
* Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane2007-02-231-130/+51
* Change Agg and Group nodes so that Vars contained in their targetlistsTom Lane2007-02-221-27/+41
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-17/+7
* Update new optional VACUUM FULL hint for translations, per Alvaro.Bruce Momjian2007-02-211-5/+5
* Move increase FSM warning to after lazy_truncate_heap() because theBruce Momjian2007-02-211-8/+11
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-204-111/+107