summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/ruleutils.c
AgeCommit message (Expand)Author
2006-01-26Fix display of whole-row Var appearing at the top level of a SELECT list.Tom Lane
2006-01-17Repair problems with the result of lookup_rowtype_tupdesc() possibly beingTom Lane
2005-12-30Repair EXPLAIN failure when trying to display a plan condition that involvesTom Lane
2005-12-10Teach deparsing of CASE expressions to cope with the simplified formsTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-06When a function not returning RECORD has a single OUT parameter, useTom Lane
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-07-15Check for out-of-range varoattno in deparse_context_for_subplan.Tom Lane
2005-07-02Add E'' to internally created SQL strings that contain backslashes.Bruce Momjian
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-26Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane
2005-06-05Replace the parser's namespace tree (which formerly had the sameTom Lane
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-05-31Teach ruleutils to drill down into RECORD-type Vars in the same wayTom Lane
2005-05-30Fix longstanding oversight in ruleutils.c: it doesn't regurgitateTom Lane
2005-05-27Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-30GCC 4.0 includes a new warning option, -Wformat-literal, that emitsNeil Conway
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-07Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-01-13get_names_for_var didn't do recursion for unnamed JOIN vars quite right;Tom Lane
2004-12-13Avoid generating excess (and illegal) parentheses around an aliased JOINTom Lane
2004-12-11Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane
2004-11-05Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane
2004-10-27When displaying a Var that is a reference to a column of an unnamed join,Tom Lane
2004-10-17pg_get_indexdef() didn't do quite the right thing with identifyingTom Lane
2004-10-07Change get_rule_expr so that when the input is a List, it displays theTom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-09-01Tweak prettyprinting rules for saner indenting of UNION, INTERSECT,Tom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-08-02Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane
2004-07-06Fix broken logic for pretty-printing parenthesis-suppression in UNIONTom Lane
2004-06-25Add pg_get_serial_sequence() function, and cause pg_dump to use it.Tom 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-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-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26A couple other cosmetic cleanups in new List stuff.Tom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-05-07NATURAL CROSS JOIN is a contradiction in terms, not to mention disallowedTom Lane
2004-05-05ALTER TABLE rewrite. New cool stuff:Tom Lane
2004-03-17Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane