summaryrefslogtreecommitdiff
path: root/src/include/parser
AgeCommit message (Expand)Author
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-27Fix array coercion expressions to ensure that the correct volatility isTom Lane
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-01-09Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom 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-12-24Code review for XML patch. Instill a bit of sanity in the location ofTom Lane
2006-12-21Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut
2006-10-04pgindent run for 8.2.Bruce Momjian
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