summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2001-02-15Arrange for ORDER BY an expression on a UNION/INTERSECT/EXCEPT result,Tom Lane
2001-02-14Repair problems with duplicate index names generated when CREATE TABLETom Lane
2001-02-14Change scoping of table and join refnames to conform to SQL92: a JOINTom Lane
2001-02-10Only look for bison as YACC; other yaccs need to be selected explicitly.Peter Eisentraut
2001-02-09plpgsql's private copy of xlateSqlType was out of sync. Again. ThisTom Lane
2001-02-03Use elog() instead of exit() for fatal scanner errors.Peter Eisentraut
2001-01-27Fix failure to create sequences for more than one SERIAL column in aTom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-23Give 'a_expr ::= a_expr Op' production a slightly lower precedence thanTom Lane
2001-01-23Remove no-longer-needed restriction against referencing systemTom Lane
2001-01-20Give a good error message for what's likely to be a common syntax error,Tom Lane
2001-01-19Suppress unused-variable warning in non-Assert compilations.Tom Lane
2001-01-17Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian
2001-01-15Fix problems with parentheses around sub-SELECT --- for the last time,Tom Lane
2001-01-08Remove compiler warning about uninitialized warnings.Bruce Momjian
2001-01-06Simplify the rules that explicitly allowed TYPE as a type name (which isPeter Eisentraut
2001-01-05Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane
2000-12-27Fix portability problems recently exposed by regression tests on Alphas.Tom Lane
2000-12-22Clean up CREATE TYPE/OPERATOR/AGGREGATE productions, so that parserTom Lane
2000-12-18Repair mishandling of PRIMARY KEY declaration that references anTom Lane
2000-12-17Tweak select_common_type() to deal with possibility of multiple preferredTom Lane
2000-12-15Remove current->old mapping.Bruce Momjian
2000-12-15Make algorithm for resolving UNKNOWN function/operator inputs beTom Lane
2000-12-15Remove obsolete comment.Tom Lane
2000-12-07transformForUpdate() mustn't assume rowMarks list is initially empty.Tom Lane
2000-12-06Clean up handling of FOR UPDATE inside views and subselects ... make itTom Lane
2000-12-05From Stephan Szabo:Tom Lane
2000-12-05Repair breakage of rules containing INSERT ... SELECT actions, per bugTom Lane
2000-12-03Ensure that all uses of <ctype.h> functions are applied to unsigned-charTom Lane
2000-12-03Repair usage of the OVERLAPS operator.Thomas G. Lockhart
2000-11-24Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant,Peter Eisentraut
2000-11-18Treat plain 'BIT' as 'BIT(1)'.Peter Eisentraut
2000-11-17Add separate type category for bit string types, allowing mixed bit/varbitPeter Eisentraut
2000-11-16Make a pstrdup copy of the literalbuf when scanning a bit string. Other-Peter Eisentraut
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-16Add support for casting bit string constants.Peter Eisentraut
2000-11-14Extend CREATE DATABASE to allow selection of a template database to beTom Lane
2000-11-12Restructure handling of inheritance queries so that they work with outerTom Lane
2000-11-11Fix bug in recent improvement to type resolution code. Forgot to retainThomas G. Lockhart
2000-11-09Arrange for CASE or UNION with only untyped literal constants as inputTom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-11-08Add ANALYSE spelling of ANALYZE for vacuum.Bruce Momjian
2000-11-07Enable fallback to string type when argument(s) are of UNKNOWN type.Thomas G. Lockhart
2000-11-06Implement AT TIME ZONE SQL9x syntax.Thomas G. Lockhart
2000-11-06Allow type resolution for UNKNOWN arguments to functions to fall back toThomas G. Lockhart
2000-11-05New CHECKPOINT command.Vadim B. Mikheev
2000-11-05UNION select in a CREATE RULE caused a weird error, because transformRuleStmtTom Lane
2000-11-05Allow ORDER BY, LIMIT in sub-selects. Fix most (not all) cases whereTom Lane
2000-11-04Make PROCEDURAL optional in CREATE/DROP LANGUAGE.Bruce Momjian
2000-11-04This patch should allow primary/foreign keyBruce Momjian