summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2006-09-03Code review for UPDATE SET (columnlist) patch. Make it handle as muchTom Lane
2006-09-03Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian
2006-09-03Remove unnecessary copyObject() call in update (values) code.Bruce Momjian
2006-09-02Small code cleanup for recent UPDATE SET (values) patch.Bruce Momjian
2006-09-02Add UPDATE tab SET ROW (col, ...) = (val, ...) for updatingBruce Momjian
2006-09-02Change FETCH/MOVE to use int8.Bruce Momjian
2006-08-30Extend COPY to support COPY (SELECT ...) TO ...Tom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-08-21Fix all known problems with pg_dump's handling of serial sequencesTom Lane
2006-08-14Cause '*' and 'foo.*' notations to mark the referenced RTE(s) asTom Lane
2006-08-12Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane
2006-08-12Remove ancient, obsolete comment.Tom Lane
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-10Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane
2006-08-02Wups, got the test for contain_vars_of_level-not-needed wrong inTom Lane
2006-08-02Add a HINT per suggestion from Michael Glaesemann. Also, tweak OLD/NEWTom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-31Change the bootstrap sequence so that toast tables for system catalogs areTom Lane
2006-07-27Aggregate functions now support multiple input arguments. I also tookTom Lane
2006-07-26Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane
2006-07-26Change LIMIT/OFFSET to use int8Bruce Momjian
2006-07-15Fix some missing inclusions identified with new pgcheckdefines tool.Tom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-11Sort reference of include files, "A" - "F".Bruce Momjian
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-07-02ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian
2006-06-27Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian
2006-06-26Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane
2006-06-21Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane
2006-06-16Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane
2006-06-16DROP ... IF EXISTS for the following cases:Andrew Dunstan
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-05-27Re-introduce the yylex filter function formerly used to support UNIONTom Lane
2006-05-21Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane
2006-05-11Code review for standard_conforming_strings patch. Fix it so it does notTom Lane
2006-05-01Provide a namespace.c function for lookup of an operator with exactTom Lane
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-04-27Use schema search path to find the first matching contraint name for SETBruce Momjian
2006-04-25Back out RESET CONNECTION until there is more discussion.Bruce Momjian
2006-04-25Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian
2006-04-24Back out patch, unintended.Bruce Momjian
2006-04-24Done:Bruce Momjian
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-04-15Support the syntaxTom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
2006-03-16Clean up representation of function RTEs for functions returning RECORD.Tom Lane