summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_target.c
AgeCommit message (Expand)Author
2005-06-26Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane
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-05-31ParseComplexProjection should make use of expandRecordVariable so thatTom Lane
2005-04-25On further experimentation, there were still a couple of bugs inTom Lane
2005-04-25Fix ExpandIndirectionStar to handle cases where the expression to beTom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-26Use a bitmapset instead of a list for duplicate-column checking inTom Lane
2005-01-13get_names_for_var didn't do recursion for unnamed JOIN vars quite right;Tom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-10-25Make error message more verbose, in hopes of avoiding misunderstandingsTom Lane
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-19Fix oversight in recent rowtype-handling improvements: transformTargetListTom Lane
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-06-01Some more de-FastList-ification.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-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-04-02Get rid of crocky use of RangeVar nodes in parser to represent partiallyTom Lane
2004-02-13Try to make 'cross-database references are not implemented' errors aTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-09-25Message editing: remove gratuitous variations in message wording, standardizePeter Eisentraut
2003-08-11Rewriter and planner should use only resno, not resname, to identifyTom Lane
2003-08-11Code cleanup inspired by recent resname bug report (doesn't fix the bugTom Lane
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-07-28A visit from the message-style police ...Tom Lane
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-07-03Code review for UPDATE tab SET col = DEFAULT patch ... whack it aroundTom Lane
2003-06-27Fix compile warnings.Tom Lane
2003-06-27First batch of object rename commands.Peter Eisentraut
2003-06-25UPDATE ... SET <col> = DEFAULTBruce Momjian
2003-05-31markTargetListOrigin neglected to handle outer-scope Vars properly;Tom Lane
2003-05-06Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13[ Revert patch ]Bruce Momjian
2003-02-13> =================================================================Bruce Momjian
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom 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-15Add DOMAIN check constraints.Bruce Momjian
2002-09-28Make the world at least somewhat safe for zero-column tables, andTom Lane
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-19Remove Ident nodetype in favor of using String nodes; this fixes someTom Lane