summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane2008-11-111-2/+1
* Add support for user-defined I/O conversion casts.Heikki Linnakangas2008-10-311-1/+2
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-211-1/+40
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-071-1/+8
* When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane2008-10-061-1/+2
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-3/+120
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-091-1/+20
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-5/+7
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-1/+12
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-6/+41
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-221-1/+19
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-141-24/+25
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-071-1/+2
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-071-1/+3
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-071-1/+2
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-021-21/+8
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-161-1/+2
* Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane2008-05-161-1/+2
* Remove typename from A_Const.Alvaro Herrera2008-04-291-3/+1