summaryrefslogtreecommitdiff
path: root/src/backend/nodes
Commit message (Expand)AuthorAgeFilesLines
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-304-16/+15
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-244-69/+73
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-234-8/+18
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-214-4/+69
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-104-4/+8
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-052-4/+4
* Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane2006-10-132-4/+2
* pgindent run for 8.2.Bruce Momjian2006-10-044-13/+13
* Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane2006-09-271-2/+2
* Improve usage of effective_cache_size parameter by assuming that all theTom Lane2006-09-191-1/+2
* 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