summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane2006-09-281-79/+21
* Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane2006-09-251-14/+49
* Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane2006-09-222-2/+28
* Fix problems with column name list of CREATE TABLE AS being applied toTom Lane2006-09-181-43/+66
* Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing;Tom Lane2006-09-181-11/+18
* Code review for UPDATE SET (columnlist) patch. Make it handle as muchTom Lane2006-09-031-104/+96
* Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian2006-09-032-59/+2
* Remove unnecessary copyObject() call in update (values) code.Bruce Momjian2006-09-031-2/+2
* Small code cleanup for recent UPDATE SET (values) patch.Bruce Momjian2006-09-021-18/+9
* Add UPDATE tab SET ROW (col, ...) = (val, ...) for updatingBruce Momjian2006-09-021-4/+74
* Change FETCH/MOVE to use int8.Bruce Momjian2006-09-022-2/+59
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-302-4/+34
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-253-10/+32
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-212-22/+37
* Cause '*' and 'foo.*' notations to mark the referenced RTE(s) asTom Lane2006-08-142-4/+11
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-123-5/+14
* Remove ancient, obsolete comment.Tom Lane2006-08-121-2/+1
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-123-13/+99
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-101-23/+51
* Wups, got the test for contain_vars_of_level-not-needed wrong inTom Lane2006-08-021-2/+2
* Add a HINT per suggestion from Michael Glaesemann. Also, tweak OLD/NEWTom Lane2006-08-021-5/+9
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-027-196/+734
* Change the bootstrap sequence so that toast tables for system catalogs areTom Lane2006-07-312-12/+3
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-273-68/+56
* Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane2006-07-262-25/+32
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-262-4/+42
* Fix some missing inclusions identified with new pgcheckdefines tool.Tom Lane2006-07-152-3/+4
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-1411-30/+11
* Allow include files to compile own their own.Bruce Momjian2006-07-136-6/+12
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-111-3/+3
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-033-295/+29
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-023-41/+328
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-1/+17
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-273-16/+83
* Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane2006-06-262-23/+89
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-211-4/+11
* Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane2006-06-161-6/+5
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-161-6/+93
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-162-4/+8
* Re-introduce the yylex filter function formerly used to support UNIONTom Lane2006-05-273-8/+127
* Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane2006-05-211-1/+13
* Code review for standard_conforming_strings patch. Fix it so it does notTom Lane2006-05-111-11/+6
* Provide a namespace.c function for lookup of an operator with exactTom Lane2006-05-011-98/+90
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-304-80/+121
* Use schema search path to find the first matching contraint name for SETBruce Momjian2006-04-271-2/+2
* Back out RESET CONNECTION until there is more discussion.Bruce Momjian2006-04-251-7/+1
* Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian2006-04-251-1/+7
* Back out patch, unintended.Bruce Momjian2006-04-241-8/+1
* Done:Bruce Momjian2006-04-241-1/+8
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-223-8/+8