summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_relation.c
AgeCommit message (Expand)Author
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-10-08Modify the parser's error reporting to include a specific hint for the caseTom Lane
2008-10-06Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane
2008-10-06Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-04-05Defend against JOINs having more than 32K columns altogether. We cannotTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-11Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane
2007-09-06Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-12-30Support type modifiers for user-defined types, and pull most knowledgeTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
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-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-01-10Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-26Adjust parser so that POSTQUEL-style implicit RTEs are stored withTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-06When a function not returning RECORD has a single OUT parameter, useTom Lane
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