summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_clause.c
AgeCommit message (Expand)Author
2006-03-16Clean up representation of function RTEs for functions returning RECORD.Tom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-05Per recent discussion on -hackers, we should sometimes reorder theNeil Conway
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-01-22Allow an optional alias for the target table to be specified for UPDATENeil Conway
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-06-05Replace the parser's namespace tree (which formerly had the sameTom Lane
2005-06-04Change expandRTE() and ResolveNew() back to taking just the singleTom Lane
2005-04-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-09-30Come to think of it, functions in FROM have the same syntactic restrictionTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-06-16Represent type-specific length coercion functions as pg_cast entries,Tom Lane
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-23Still another place to make the world safe for zero-column tables:Tom Lane
2004-04-18Tweak findTargetlistEntry so that bare names occurring in GROUP BY clausesTom Lane
2004-01-23Fix a minor bug introduced by the recent CREATE TABLE AS / WITH OIDSNeil Conway
2004-01-14Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-09-26Various message fixes, among those fixes for the previous round of fixesPeter Eisentraut
2003-09-25Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut
2003-08-17Create a 'type cache' that keeps track of the data needed for any particularTom Lane
2003-08-07create_unique_plan() should not discard existing output columns of theTom Lane
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-07-03Do honest transformation and preprocessing of LIMIT/OFFSET clauses,Tom Lane
2003-06-16Allow GROUP BY, ORDER BY, DISTINCT targets to be unknown literals,Tom Lane
2003-06-15Cause GROUP BY clause to adopt ordering operators from ORDER BY whenTom Lane
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-03-22Adjust subquery qual pushdown rules to be more forgiving: if a qualTom Lane
2003-03-10Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13Arrange to give error when a SetOp member statement refers to a variableTom Lane
2003-02-13[ Revert patch ]Bruce Momjian
2003-02-13> =================================================================Bruce Momjian
2003-02-10Get rid of last few vestiges of parsetree dependency on grammar tokenTom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2002-12-16Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-11-29Tighten selection of equality and ordering operators for groupingTom Lane