summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_clause.c
AgeCommit message (Expand)Author
2003-07-19Another round of error message editing, covering backend/parser/.Tom Lane
2003-07-03Do honest transformation and preprocessing of LIMIT/OFFSET clauses,Tom Lane
2003-06-16Allow GROUP BY, ORDER BY, DISTINCT targets to be unknown literals,Tom Lane
2003-06-15Cause GROUP BY clause to adopt ordering operators from ORDER BY whenTom Lane
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-03-22Adjust subquery qual pushdown rules to be more forgiving: if a qualTom Lane
2003-03-10Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13Arrange to give error when a SetOp member statement refers to a variableTom Lane
2003-02-13[ Revert patch ]Bruce Momjian
2003-02-13> =================================================================Bruce Momjian
2003-02-10Get rid of last few vestiges of parsetree dependency on grammar tokenTom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2002-12-16Fix ALTER TABLE ADD COLUMN to disallow the same column types that areTom 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-29Tighten selection of equality and ordering operators for groupingTom Lane
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-18Remove optimization whereby parser would make only one sort-list entryTom Lane
2002-08-04Attached are two patches to implement and document anonymous compositeBruce Momjian
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-18Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan toTom Lane
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
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-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom Lane
2002-04-15Fix oversight in recent change of representation for JOIN aliasTom Lane
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
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-08-09Use format_type sibling in backend error messages, so the user seesPeter Eisentraut
2001-06-19Add IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the existing booleanTom Lane
2001-05-18Small code cleanups,formatting.Bruce Momjian
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-02-16Clean up two rather nasty bugs in operator selection code.Tom Lane
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-05Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-10-07Arrange that no database accesses are attempted during parser() --- thisTom Lane
2000-10-05Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane