summaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
Commit message (Expand)AuthorAgeFilesLines
* This patch implements holdable cursors, following the proposalBruce Momjian2003-03-271-1/+8
* Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane2003-03-101-56/+34
* Parser was dropping foreign-key constraints on the floor if present inTom Lane2003-02-131-10/+13
* Arrange to give error when a SetOp member statement refers to a variableTom Lane2003-02-131-1/+15
* Use a varno not chosen at random for dummy variables in the top-levelTom Lane2003-02-111-3/+8
* Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane2003-02-091-10/+10
* Fix parse_agg.c to detect ungrouped Vars in sub-SELECTs; remove codeTom Lane2003-01-171-12/+12
* Enforces NOT NULL constraints to be applied against new PRIMARY KEYTom Lane2003-01-021-26/+10
* To suppress memory leakage in long-lived Lists, lremove() should pfreeTom Lane2002-12-171-13/+20
* Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane2002-12-131-4/+1
* Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane2002-12-121-2/+2
* Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane2002-12-121-6/+6
* Add DOMAIN check constraints.Bruce Momjian2002-11-151-2/+2
* Fix places that were using IsTransactionBlock() as an (inadequate) checkTom Lane2002-10-211-21/+1
* Disallow aggregate functions in rule WHERE clauses. Per gripe fromTom Lane2002-10-201-1/+5
* Adjust handling of command status strings in the presence of rules,Tom Lane2002-10-141-3/+3
* Move most of the error checking for foreign-key constraints out ofTom Lane2002-09-221-416/+38
* Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane2002-09-181-17/+13
* pgindent run.Bruce Momjian2002-09-041-75/+80
* I checked all the previous string handling errors and most of them wereBruce Momjian2002-09-021-2/+2
* Remove #ifdef MULTIBYTE per hackers list discussion.Tatsuo Ishii2002-08-291-5/+1
* backend where a statically sized buffer is written to. Most of theseBruce Momjian2002-08-281-2/+2
* PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzingTom Lane2002-08-271-1/+139
* This patches replaces a few more usages of strcpy() and sprintf() whenBruce Momjian2002-08-271-3/+3
* Fix pg_dump to dump serial columns as serials. Per pghackers discussion,Tom Lane2002-08-191-11/+5
* Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane2002-08-191-62/+42
* ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane2002-08-021-13/+12
* Add more dependency insertions --- this completes the basic pg_dependTom Lane2002-07-161-1/+7
* Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane2002-07-121-206/+26
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
* Repair for bug #691 --- CREATE TABLE AS column aliases fail to beTom Lane2002-06-131-1/+9
* In default nextval('foo') expression for a SERIAL column, use doubleTom Lane2002-05-281-3/+2
* First pass at set-returning-functions in FROM, by Joe Conway withTom Lane2002-05-121-3/+3
* Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane2002-04-281-12/+7
* Reports missing values as bad.Bruce Momjian2002-04-241-5/+7
* Opclasses live in namespaces. I also took the opportunity to createTom Lane2002-04-171-2/+2
* Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane2002-04-161-5/+7
* Tweak error message wording.Tom Lane2002-04-121-5/+5
* Functions live in namespaces. Qualified function names work, egTom Lane2002-04-091-17/+23
* Add INSERT(..., DEFAULT, ).Bruce Momjian2002-04-051-4/+20
* Tweak SERIAL column creation to emit a fully qualified sequence nameTom Lane2002-04-021-23/+27
* Reimplement temp tables using schemas. The temp table map is history;Tom Lane2002-03-311-5/+1
* pg_type has a typnamespace column; system now supports creating typesTom Lane2002-03-291-143/+20
* pg_class has a relnamespace column. You can create and access tablesTom Lane2002-03-261-18/+15
* A little further progress on schemas: push down RangeVars intoTom Lane2002-03-221-9/+9
* First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane2002-03-211-107/+215
* Restructure representation of join alias variables. An explicit JOINTom Lane2002-03-121-14/+30
* Add DEFAULT_INDEX_TYPE == "btree", for clarity.Bruce Momjian2002-03-101-2/+3
* Remove unnecessary inclusion.Tom Lane2002-03-081-2/+1
* Change made to elog:Bruce Momjian2002-03-061-8/+8