summaryrefslogtreecommitdiff
path: root/src/include/parser
AgeCommit message (Expand)Author
2006-09-25Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane
2006-09-22Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-27Aggregate functions now support multiple input arguments. I also tookTom Lane
2006-07-26Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane
2006-07-26Change LIMIT/OFFSET to use int8Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-06-26Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane
2006-05-27Re-introduce the yylex filter function formerly used to support UNIONTom Lane
2006-05-21Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane
2006-05-11Code review for standard_conforming_strings patch. Fix it so it does notTom Lane
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-04-15Support the syntaxTom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-07Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2005-12-28Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom 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-31ParseComplexProjection should make use of expandRecordVariable so thatTom Lane
2005-05-29Remove typeidIsValid() checks in can_coerce_type(). These checksTom 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
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-06When implementing a coercion to a domain type with a combinedTom 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-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-06-16Represent type-specific length coercion functions as pg_cast entries,Tom Lane
2004-06-10Clean up generation of default names for constraints, indexes, and serialTom Lane
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-06-03Remove typeTypeFlag(), which was not only unused but entirely redundantTom Lane
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-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane
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-03-24Replace max_expr_depth parameter with a max_stack_depth parameter thatTom Lane
2004-02-21Implement a solution to the 'Turkish locale downcases I incorrectly'Tom 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