summaryrefslogtreecommitdiff
path: root/src/backend/tcop/utility.c
Commit message (Expand)AuthorAgeFilesLines
* Add a SECURITY LABEL command.Robert Haas2010-09-271-0/+14
* Add ALTER TYPE ... ADD/DROP/ALTER/RENAME ATTRIBUTEPeter Eisentraut2010-09-261-0/+4
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane2010-08-181-2/+3
* CREATE TABLE IF NOT EXISTS.Robert Haas2010-07-251-1/+8
* pgindent run for 9.0Bruce Momjian2010-02-261-17/+18
* Clean up handling of XactReadOnly and RecoveryInProgress checks.Tom Lane2010-02-201-25/+52
* Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane2010-02-161-6/+6
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-4/+2
* Fix command tag for ALTER LARGE OBJECT.Itagaki Takahiro2010-01-291-2/+2
* Improve the handling of SET CONSTRAINTS commands by having them searchTom Lane2010-01-171-3/+3
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-151-1/+2
* Preserve relfilenodes:Bruce Momjian2010-01-061-7/+3
* Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas2010-01-051-1/+14
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-191-2/+29
* Add a hook to let loadable modules get control at ProcessUtility execution,Tom Lane2009-12-151-1/+26
* Add large object access control.Itagaki Takahiro2009-12-111-1/+4
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-091-1/+27
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-1/+2
* Revert due to Tom's concerns:Bruce Momjian2009-12-011-22/+1
* ProcessUtility_hook:Bruce Momjian2009-12-011-1/+22
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-2/+2
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-161-2/+2
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-2/+4
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-051-1/+14
* Implement the DO statement to support execution of PL code without havingTom Lane2009-09-221-1/+13
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-2/+4
* Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid.Tom Lane2009-07-281-2/+3
* Extend EXPLAIN to allow generic options to be specified.Tom Lane2009-07-261-2/+12
* Make backend header files C++ safePeter Eisentraut2009-07-161-6/+6
* Revisit AlterTableCreateToastTable's API once again, hoping to make it whatTom Lane2009-06-111-1/+2
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-7/+8
* Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane2009-05-071-3/+6
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-021-2/+16
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-2/+2
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-191-1/+100
* Default values for function argumentsPeter Eisentraut2008-12-041-2/+2
* Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane2008-11-071-2/+2
* Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane2008-11-041-1/+6
* Fix omission of DiscardStmt in GetCommandLogLevel, per report from HubertTom Lane2008-10-101-37/+42
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-5/+5
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-2/+5
* Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera2008-08-131-2/+2
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-181-2/+8
* Rearrange ALTER TABLE syntax processing as per my recent proposal: theTom Lane2008-06-151-12/+19
* Refactor the handling of the various DropStmt variants so that when multipleTom Lane2008-06-141-242/+40
* Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera2008-06-051-2/+3
* Support ALTER TYPE RENAME. Petr JelinekTom Lane2008-03-191-1/+4