summaryrefslogtreecommitdiff
path: root/src/backend/nodes/equalfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* 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/+1
* 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/+2
* Support use of function argument names to identify which actual argumentsTom Lane2009-10-081-1/+15
* 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/+13
* Implement the DO statement to support execution of PL code without havingTom Lane2009-09-221-1/+13
* Merge the Constraint and FkConstraint node types into a single type.Tom Lane2009-07-301-24/+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-3/+2
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-3/+3
* 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-26/+3
* 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-15/+1
* Add the possibility to specify an explicit validator function for foreign-dataPeter Eisentraut2009-02-241-3/+4
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-021-1/+14
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-1/+15
* 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/+3
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+53
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-191-1/+133
* 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/+41
* 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/+43
* 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/+10
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-6/+50
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-221-1/+14
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-141-18/+19
* 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-8/+6