summaryrefslogtreecommitdiff
path: root/src/backend/nodes/copyfuncs.c
AgeCommit message (Expand)Author
2010-09-28Fix PlaceHolderVar mechanism's interaction with outer joins.Tom Lane
2010-08-18Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane
2010-08-18Add missing handling of PlannedStmt.transientPlan in copyfuncs/outfuncs.Tom Lane
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-23Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane
2010-02-16Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane
2010-02-12Extend the set of frame options supported for window functions.Tom Lane
2010-01-28Type table featurePeter Eisentraut
2010-01-05Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas
2010-01-02Update copyright for the year 2010.Bruce Momjian
2010-01-01Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane
2009-12-29Add the ability to store inheritance-tree statistics in pg_statistic,Tom Lane
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-16Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-13Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane
2009-10-12Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane
2009-10-12CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan
2009-10-12Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane
2009-10-10Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-10-07Make it possibly to specify GUC params per user and per database.Alvaro Herrera
2009-10-06Change CREATE TABLE so that column default expressions coming from differentTom Lane
2009-10-05Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane
2009-09-22Implement the DO statement to support execution of PL code without havingTom Lane
2009-07-30Merge the Constraint and FkConstraint node types into a single type.Tom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-07-26Extend EXPLAIN to allow generic options to be specified.Tom Lane
2009-07-20DROP IF EXISTS for columns and constraints. Andres Freund.Andrew Dunstan
2009-07-16Make backend header files C++ safePeter Eisentraut
2009-06-18Fix the just-reported problem that you can't specify all four trigger eventTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-04-16Fix planner to restore its previous level of intelligence about pushingTom Lane
2009-04-05Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane
2009-04-04Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane
2009-03-21Optimize multi-batch hash joins when the outer relation has a nonuniformTom Lane
2009-03-10Make SubPlan nodes carry the result's typmod as well as datatype OID. This isTom Lane
2009-02-25Get rid of the rather fuzzily defined FlattenedSubLink node type in favor ofTom Lane
2009-02-24Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut
2009-02-06Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge joinTom 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-16Add vacuum_freeze_table_age GUC option, to control when VACUUM shouldHeikki Linnakangas
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-31Add some basic support for window frame clauses to the window-functionsTom Lane