summaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAgeFilesLines
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-302-2/+4
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-253-3/+6
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-214-7/+18
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-124-6/+20
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-104-4/+8
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-025-7/+59
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-274-8/+8
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-144-10/+4
* More include file adjustments.Bruce Momjian2006-07-131-2/+2
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-034-10/+4
* Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway2006-07-022-3/+4
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-024-12/+23
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-1/+2
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-012-4/+6
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-272-4/+4
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-162-2/+14
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-304-19/+69
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-225-111/+32
* Support the syntaxTom Lane2006-04-152-60/+10
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-041-3/+2
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-233-3/+6
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-164-49/+13
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-145-7/+59
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0514-28/+28
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-032-2/+4
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-194-4/+28
* DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan2006-02-042-2/+4
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-313-5/+62
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-284-22/+81
* Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane2005-12-203-4/+51
* Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane2005-11-281-1/+6
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-262-5/+5
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-222-7/+7
* DROP DATABASE IF EXISTS variantAndrew Dunstan2005-11-222-2/+4
* Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera2005-11-212-5/+52
* Clean up after DROP IF EXISTS patch.Tom Lane2005-11-202-2/+4
* Restore the former RestrictInfo field valid_everywhere (but invert the flagTom Lane2005-11-143-3/+6
* Standard pgindent run for 8.1.Bruce Momjian2005-10-1510-171/+168
* Clean up a couple of ad-hoc computations of the maximum number of tuplesTom Lane2005-09-021-2/+2
* Tweak nodeBitmapAnd to stop evaluating sub-plan scans if it finds it'sTom Lane2005-08-281-1/+10
* Change the division of labor between grouping_planner and query_plannerTom Lane2005-08-271-1/+4
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-014-10/+52
* Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane2005-08-012-6/+40
* Add per-user and per-database connection limit options.Tom Lane2005-07-312-2/+28
* Fix a bunch of bad interactions between partial indexes and the newTom Lane2005-07-281-5/+155
* Add a role property 'rolinherit' which, when false, denotes that the roleTom Lane2005-07-262-2/+4
* Fix logic error in tbm_intersect: the intersection of a normal page andTom Lane2005-07-241-6/+23
* Teach planner about some cases where a restriction clause can beTom Lane2005-07-023-6/+7
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-284-128/+84
* Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane2005-06-264-4/+65