summaryrefslogtreecommitdiff
path: root/src/include/commands
AgeCommit message (Expand)Author
2009-04-04Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane
2009-02-02Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-22Update comments to reflect that tgenabled is not a boolean anymore.Heikki Linnakangas
2009-01-16Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas
2009-01-02Include a pointer to the query's source text in QueryDesc structs. This isTom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-19SQL/MED catalog manipulation facilitiesPeter Eisentraut
2008-12-17Don't reset pg_class.reltuples and relpages in VACUUM, if any pages wereHeikki Linnakangas
2008-12-04Default values for function argumentsPeter Eisentraut
2008-11-19Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane
2008-11-10Make relhasrules and relhastriggers work like relhasindex, namely we letTom Lane
2008-11-07Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane
2008-10-24Reduce the memory footprint of large pending-trigger-event lists, as per myTom Lane
2008-09-19Mark SessionReplicationRole as PGDLLIMPORT so itMagnus Hagander
2008-08-13Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera
2008-07-01Extend VacAttrStats to allow typanalyze functions to store statistic valuesHeikki Linnakangas
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera
2008-06-15Rearrange ALTER TABLE syntax processing as per my recent proposal: theTom Lane
2008-06-14Refactor the handling of the various DropStmt variants so that when multipleTom Lane
2008-06-05Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera
2008-05-17Add $PostgreSQL$ markers to a lot of files that were missing them.Andrew Dunstan
2008-05-16Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane
2008-04-29Fix REASSIGN OWNED so that it works on procedural languages too.Alvaro Herrera
2008-03-28Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane
2008-03-27Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane
2008-03-19Support ALTER TYPE RENAME. Petr JelinekTom Lane
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-01-30Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane
2008-01-02Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-01Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane
2007-11-30Avoid incrementing the CommandCounter when CommandCounterIncrement is calledTom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-08-22Simplify the syntax of CREATE/ALTER TEXT SEARCH DICTIONARY by treating theTom Lane
2007-08-21Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane
2007-08-04Switch over to using the src/timezone functions for formatting timestampsTom Lane
2007-07-25Rename DLLIMPORT macro to PGDLLIMPORT to avoid conflict withMagnus Hagander
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-06-07Rework temp_tablespaces patch so that temp tablespaces are assigned separatelyTom Lane
2007-06-03Create a GUC parameter temp_tablespaces that allows selection of theTom Lane
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-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-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-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane