summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2004-07-12Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane
2004-07-11ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane
2004-06-28Remove some no-longer-needed #includes.Tom Lane
2004-06-28Fix some bogus code in ConstBit production --- it managed to work, butTom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-19Fix oversight in recent rowtype-handling improvements: transformTargetListTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom 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-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-06-04Remove some long-obsolete code that was causing a strange error messageTom Lane
2004-06-03Remove typeTypeFlag(), which was not only unused but entirely redundantTom Lane
2004-06-02OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian
2004-06-01Some more de-FastList-ification.Tom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26The patch adresses the TODO list item "Allow external interfaces toBruce Momjian
2004-05-26This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian
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-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane
2004-04-21Change COPY CSV keyword to be:Bruce Momjian
2004-04-19Complete TODO item:Bruce Momjian
2004-04-18Tweak findTargetlistEntry so that bare names occurring in GROUP BY clausesTom Lane
2004-04-05Allow LIKE/ILIKE to appear in more places in a query.Bruce Momjian
2004-04-02Fix poor choice of error message in corner cases.Tom Lane
2004-04-02Clean up some code that had gotten a bit ugly through repeated revisions.Tom Lane
2004-04-02Get rid of crocky use of RangeVar nodes in parser to represent partiallyTom Lane
2004-04-01Replace TupleTableSlot convention for whole-row variables and functionTom Lane
2004-03-24Replace max_expr_depth parameter with a max_stack_depth parameter thatTom Lane
2004-03-21Revise syntax-error reporting behavior to give pleasant results forTom Lane
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane
2004-03-15Remove grotty special-case code in coerce_to_target_type() thatTom Lane
2004-03-11Add NOWAIT option to LOCK commandTatsuo Ishii
2004-03-09Add ALSO keyword to CREATE RULE.Bruce Momjian
2004-02-24Implement dollar-quoting in the backend lexer and psql. DocumentationTom Lane
2004-02-21Implement a solution to the 'Turkish locale downcases I incorrectly'Tom Lane
2004-02-19Cosmetic changes (mostly whitespace) to make it easier to diff theTom Lane
2004-02-13Try to make 'cross-database references are not implemented' errors aTom Lane
2004-01-28Fix oversight in check_ungrouped_columns optimization that avoidsTom 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
2004-01-11Add CREATE TRIGGER, CREATE INDEX, and CREATE SEQUENCE to the list ofNeil Conway
2004-01-10Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This isNeil Conway
2004-01-10Allow BEGIN WORK to specify transaction isolation level, like STARTBruce Momjian
2004-01-07More janitorial work: remove the explicit casting of NULL literals to aNeil Conway
2004-01-06Apply the core parts of Dennis Bjorklund's patch to allow functionTom Lane
2004-01-05Trivial refactoring: move analysis of ViewStmt into its own function forNeil Conway
2003-12-17Reorder tests in parse_coerce so that ANY/ANYELEMENT/ANYARRAY coercionTom Lane