summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_relation.c
AgeCommit message (Expand)Author
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom 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-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-05-29expandRTE and get_rte_attribute_type mistakenly always imputed typmod -1Tom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-07Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-31First phase of OUT-parameters project. We can now define and use SQLTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-10-20Allow functions returning void or cstring to appear in FROM clause,Tom 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-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom 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-04-18Tweak findTargetlistEntry so that bare names occurring in GROUP BY clausesTom Lane
2004-04-02Get rid of crocky use of RangeVar nodes in parser to represent partiallyTom Lane
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-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-20Another round of error message editing, covering backend/commands/.Tom Lane
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-06-15Replace cryptic 'Unknown kind of return type' messages with somethingTom Lane
2003-06-11Add add_missing_from GUC variable.Bruce Momjian
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-29Code review for standalone composite types, query-specified compositeTom Lane
2002-08-08Cause view/rule display to work as expected after rename of an underlyingTom Lane
2002-08-08Cause schema-qualified FROM items and schema-qualified variable referencesTom Lane
2002-08-06>> Hm. I'd sort of expect the "z" to become both the table and columnBruce Momjian
2002-08-06The attached patch disallows the use of coldeflists for functions thatBruce Momjian
2002-08-05Preliminary code review for anonymous-composite-types patch: fix breakageTom Lane
2002-08-04Attached are two patches to implement and document anonymous compositeBruce Momjian
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-04-28Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane
2002-04-02Removed obsolete DROP_COLUMN_HACK stuff.Hiroshi Inoue
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane