summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2002-07-18pg_cast table, and standards-compliant CREATE/DROP CAST commands, plusPeter Eisentraut
2002-07-18Back out BETWEEN node patch, was causing initdb failure.Bruce Momjian
2002-07-18Implement DROP SCHEMA. It lacks support for dropping conversions andTom Lane
2002-07-18The attached patch (against HEAD) implementsBruce Momjian
2002-07-18Finished the Between patch Christopher started.Bruce Momjian
2002-07-18I have committed many support files for CREATE CONVERSION. DefaultTatsuo Ishii
2002-07-16Add more dependency insertions --- this completes the basic pg_dependTom Lane
2002-07-14Add COMMENT ON CONSTRAINT facility (from Rod Taylor's pg_constraint patch).Tom Lane
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-07-11Add new CREATE CONVERSION/DROP CONVERSION command.Tatsuo Ishii
2002-07-09Oops, proper initialization for domainTypMod was none at all, not 0.Bruce Momjian
2002-07-09Fix compiler warning:Bruce Momjian
2002-07-06I've fixed up the way domain constraints (not null and type length)Bruce Momjian
2002-07-04Implement the IS DISTINCT FROM operator per SQL99.Thomas G. Lockhart
2002-07-01First phase of applying Rod Taylor's pg_depend patch. This just addsTom Lane
2002-06-22Implement SQL99 CREATE CAST and DROP CAST statements.Thomas G. Lockhart
2002-06-20Update copyright to 2002.Bruce Momjian
2002-06-20Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian
2002-06-19Properly mark rules that return no value.Bruce Momjian
2002-06-18Wrap long gram.y lines.Bruce Momjian
2002-06-18Change CREATE DATABASE to use DefElem instead of constructing structureBruce Momjian
2002-06-18Improve rule action ordering in gram.y, more cleanups.Bruce Momjian
2002-06-17Mark noise keyword actions with {} rather than returning TRUE, likeBruce Momjian
2002-06-17Manually indent gram.y to be consistent.Bruce Momjian
2002-06-17Merge ALTER GROUP ADD/DROP rules by creating add_drop action.Bruce Momjian
2002-06-17Simplify optional WITH handling in CREATE USER, ALTER USER, CREATEBruce Momjian
2002-06-15Add LOCALTIME and LOCALTIMESTAMP functions per SQL99 standard.Thomas G. Lockhart
2002-06-13Add PLACING to the list of reserved keywords. Added as a token in the lastThomas G. Lockhart
2002-06-13Repair for bug #691 --- CREATE TABLE AS column aliases fail to beTom Lane
2002-06-11Implement SQL99 OVERLAY(). Allows substitution of a substring in a string.Thomas G. Lockhart
2002-06-11Katherine Ward wrote:Jan Wieck
2002-05-28In default nextval('foo') expression for a SERIAL column, use doubleTom Lane
2002-05-22Add optional "validator" function to languages that can validate thePeter Eisentraut
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-05-19Reorder keyword token declarations alphabetically. Status of the keywordsPeter Eisentraut
2002-05-18Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan toTom Lane
2002-05-17Get rid of the last few uses of typeidTypeName() rather thanTom Lane
2002-05-17Extend syntax of CREATE FUNCTION to resemble SQL99.Peter Eisentraut
2002-05-17Merge the last few variable.c configuration variables into the genericTom Lane
2002-05-13Make operators have their own comments separate from those of theTom 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-05-06Accept SET SESSION AUTHORIZATION DEFAULT and RESET SESSION AUTHORIZATIONTom Lane
2002-05-03Make ruleutils.c schema-aware. Displayed names are schema-qualifiedTom Lane
2002-05-03Retire xlateSqlType/xlateSqlFunc; all type name translations are nowTom Lane
2002-05-02Tweak scanner/grammar interface so that the keyword-as-identifier rulesTom Lane
2002-05-01Give left_oper() and right_oper() noError parameters like oper() (theTom Lane
2002-05-01Improve lexer's error reporting. You get the whole token mentioned nowTom Lane
2002-04-28Second try at fixing join alias variables. Instead of attaching miscellaneousTom Lane
2002-04-28Make ruleutils.c use format_type for printing typenames. Minor tweaksTom Lane