summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-15Arrange to cache a ResultRelInfo in the executor's EState for relations thatTom Lane
2007-08-15Repair problems occurring when multiple RI updates have to be done to the sameTom Lane
2007-08-13Fix two bugs induced in VACUUM FULL by async-commit patch.Tom Lane
2007-08-04Switch over to using the src/timezone functions for formatting timestampsTom Lane
2007-08-01Support an optional asynchronous commit mode, in which we don't flush WALTom Lane
2007-07-17Fix incorrect optimization of foreign-key checks. When an UPDATE on theTom Lane
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-03Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway
2007-07-01Avoid memory leakage when a series of subtransactions invoke AFTER triggersTom Lane
2007-06-28Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane
2007-06-23Separate parse-analysis for utility commands out of parser/analyze.cTom Lane
2007-06-20CREATE DOMAIN ... DEFAULT NULL failed because gram.y special-cases DEFAULTTom Lane
2007-06-20Minor code cleanup: calling FreeFile() before ereport(ERROR) is notNeil Conway
2007-06-17Marginal hacking to improve the speed of COPY OUT. I had found in a bit ofTom Lane
2007-06-15Tweak the API for per-datatype typmodin functions so that they are passedTom Lane
2007-06-14Avoid having autovacuum run multiple ANALYZE commands in a single transaction,Alvaro Herrera
2007-06-07Rework temp_tablespaces patch so that temp tablespaces are assigned separatelyTom Lane
2007-06-03Clarify some error messages about duplicate things.Peter Eisentraut
2007-06-03Create a GUC parameter temp_tablespaces that allows selection of theTom Lane
2007-06-02Minimal message corrections found by spell checker.Peter Eisentraut
2007-06-01Make CREATE/DROP/RENAME DATABASE wait a little bit to see if other backendsTom Lane
2007-05-31Make some messages more consistentPeter Eisentraut
2007-05-30Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane
2007-05-25Create hooks to let a loadable plugin monitor (or even replace) the plannerTom Lane
2007-05-19Fix dumb compile error in the last patch.Alvaro Herrera
2007-05-18Have CLUSTER advance the table's relfrozenxid. The new frozen point is theAlvaro Herrera
2007-05-17Move the tuple freezing point in CLUSTER to a point further back in the past,Alvaro Herrera
2007-05-16Have TRUNCATE advance the affected table's relfrozenxid to RecentXmin, toAlvaro Herrera
2007-05-14Get rid of the pg_shdepend entry for a TOAST table; it's unnecessary sinceTom Lane
2007-05-12Fix the problem that creating a user-defined type named _foo, followed by oneTom Lane
2007-05-11Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINTTom Lane
2007-05-11Support arrays of composite types, including the rowtypes of regular tablesTom Lane
2007-05-04Add a line to the EXPLAIN ANALYZE output for a Sort node, showing theTom Lane
2007-05-02Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane
2007-04-30Implement rate-limiting logic on how often backends will attempt to sendTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-19Silence compiler warnings, per Bruce.Alvaro Herrera
2007-04-18Enable configurable log of autovacuum actions. Initial patch from SimonAlvaro Herrera
2007-04-18Update docs/error message for CSV quote/escape --- must be ASCII.Bruce Momjian
2007-04-18Update error message for COPY with a multi-byte delimiter.Bruce Momjian
2007-04-16Add a multi-worker capability to autovacuum. This allows multiple workerAlvaro Herrera
2007-04-16Make plancache store cursor options so it can pass them to planner duringTom Lane
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-12Cancel pending fsync requests during WAL replay of DROP DATABASE, per bugTom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-08Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane
2007-04-06Support varlena fields with single-byte headers and unaligned storage.Tom Lane