summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
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
2002-04-25Implement types regprocedure, regoper, regoperator, regclass, regtypeTom Lane
2002-04-24Attached is a patch for ALTER TRIGGER RENAME per the above thread. IBruce Momjian
2002-04-24Reports missing values as bad.Bruce Momjian
2002-04-21Oops. Remove declaration for set_name_needs_quotes(), since it is now gone.Thomas G. Lockhart
2002-04-21Remove the definition for set_name_needs_quotes() on the assumption thatThomas G. Lockhart
2002-04-21Make WITHOUT TIME ZONE the default for TIMESTAMP and TIME data types.Thomas G. Lockhart
2002-04-21Restructure AclItem representation so that we can have more than eightTom Lane
2002-04-20Scanner performance improvementsPeter Eisentraut
2002-04-18Make PUBLIC an unreserved word (in fact, not a keyword at all),Tom Lane
2002-04-18Rule names are now unique per-relation, rather than unique globally.Tom Lane
2002-04-17Opclasses live in namespaces. I also took the opportunity to createTom 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-04-12Tweak error message wording.Tom Lane
2002-04-11Restructure representation of aggregate functions so that they have pg_procTom Lane
2002-04-09Functions live in namespaces. Qualified function names work, egTom Lane
2002-04-06Implement partial-key searching of syscaches, per recent suggestionTom Lane
2002-04-05Add INSERT(..., DEFAULT, ).Bruce Momjian
2002-04-05Divide functions into three volatility classes (immutable, stable, andTom Lane
2002-04-02Removed obsolete DROP_COLUMN_HACK stuff.Hiroshi Inoue
2002-04-02Tweak SERIAL column creation to emit a fully qualified sequence nameTom Lane
2002-04-01ALTER TABLE SET/DROP NOT NULL, from Christopher Kings-Lynne.Tom Lane
2002-04-01Create a new GUC variable search_path to control the namespace searchTom Lane
2002-03-31Reimplement temp tables using schemas. The temp table map is history;Tom Lane
2002-03-30Further cleanups for relations in schemas: teach nextval and otherTom Lane
2002-03-29Mop-up some infelicities in new relation lookup handling.Tom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom 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-20Code review for DOMAIN patch.Tom Lane
2002-03-19Fix DOMAIN breakage.Bruce Momjian
2002-03-19Add DOMAIN support. Includes manual pages and regression tests, fromBruce Momjian
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2002-03-10Add DEFAULT_INDEX_TYPE == "btree", for clarity.Bruce Momjian
2002-03-10Disable brackets in multi-statement rules, as discussed.Bruce Momjian
2002-03-09Guard against NULL strings in SET key=val constructs.Thomas G. Lockhart
2002-03-08analyze.o need not depend on parser.h.Tom Lane
2002-03-08Remove unnecessary inclusion.Tom Lane
2002-03-08Fix copying/equality-check bugs in GrantStmt and ConstraintsSetStmt,Tom Lane
2002-03-07Back out domain patch until it works properly.Bruce Momjian
2002-03-06Ok. Updated patch attached.Bruce Momjian
2002-03-06Change made to elog:Bruce Momjian
2002-03-05I attach a version of my toast-slicing patch, against current CVSBruce Momjian