summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Extend the set of frame options supported for window functions.Tom Lane2010-02-121-1/+7
* Type table featurePeter Eisentraut2010-01-281-1/+2
* Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas2010-01-051-1/+16
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane2010-01-011-1/+2
* Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane2009-12-291-1/+2
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-231-1/+2
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-151-3/+5
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-1/+5
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-1/+2
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-161-5/+2
* When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane2009-10-281-1/+3
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-4/+27
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-141-1/+2
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-131-1/+2
* Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane2009-10-121-1/+2
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-121-2/+2
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-121-1/+27
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-101-3/+29
* Support use of function argument names to identify which actual argumentsTom Lane2009-10-081-1/+20
* Make it possibly to specify GUC params per user and per database.Alvaro Herrera2009-10-071-1/+2
* Change CREATE TABLE so that column default expressions coming from differentTom Lane2009-10-061-2/+2
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-051-1/+15
* Implement the DO statement to support execution of PL code without havingTom Lane2009-09-221-1/+15
* Merge the Constraint and FkConstraint node types into a single type.Tom Lane2009-07-301-26/+12
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-1/+5
* Extend EXPLAIN to allow generic options to be specified.Tom Lane2009-07-261-3/+2
* DROP IF EXISTS for columns and constraints. Andres Freund.Andrew Dunstan2009-07-201-1/+2
* Make backend header files C++ safePeter Eisentraut2009-07-161-9/+9
* Fix the just-reported problem that you can't specify all four trigger eventTom Lane2009-06-181-2/+2
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-6/+6
* Fix planner to restore its previous level of intelligence about pushingTom Lane2009-04-161-1/+2
* Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane2009-04-051-1/+2
* Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane2009-04-041-30/+3
* Optimize multi-batch hash joins when the outer relation has a nonuniformTom Lane2009-03-211-1/+5
* Make SubPlan nodes carry the result's typmod as well as datatype OID. This isTom Lane2009-03-101-1/+2
* Get rid of the rather fuzzily defined FlattenedSubLink node type in favor ofTom Lane2009-02-251-20/+1
* Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut2009-02-241-3/+4
* Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge joinTom Lane2009-02-061-2/+3
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-021-1/+16
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-1/+17
* Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas2009-01-161-2/+2
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Add some basic support for window frame clauses to the window-functionsTom Lane2008-12-311-1/+5
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+91
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-191-1/+153
* Default values for function argumentsPeter Eisentraut2008-12-041-1/+2
* Utilize the visibility map in autovacuum, too. There was an oversight inHeikki Linnakangas2008-12-041-1/+2
* CLUSTER VERBOSE and corresponding clusterdb --verbose optionPeter Eisentraut2008-11-241-1/+2
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-151-1/+3