summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
AgeCommit message (Expand)Author
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13transformExpr() was missing some cases it ought to allow; per reportTom Lane
2003-02-10Get rid of last few vestiges of parsetree dependency on grammar tokenTom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-01-13Recent changes in sublink representation require exprType() to acceptTom Lane
2003-01-10Further tweaking of parsetree & plantree representation of SubLinks.Tom Lane
2003-01-09Adjust parser so that 'x NOT IN (subselect)' is converted toTom Lane
2002-12-27Deliver better error message when a relation name is used in an expression.Tom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-06Re-addd Rod's ALTER DOMAIN patch.Bruce Momjian
2002-12-06Back out ALTER DOMAIN patch until missing file appears.Bruce Momjian
2002-12-06ALTER DOMAIN .. SET / DROP NOT NULLBruce Momjian
2002-11-30Code review for IS DISTINCT FROM patch. Fix incorrect constant-foldingTom Lane
2002-11-26Use Params, rather than run-time-modified Const nodes, to handleTom Lane
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-08-31Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane
2002-08-26Modify array operations to include array's element type OID in theTom Lane
2002-08-08Cause schema-qualified FROM items and schema-qualified variable referencesTom Lane
2002-08-04Implement IS OF type predicate. Can now do queries of the form:Thomas G. Lockhart
2002-07-18Back out BETWEEN node patch, was causing initdb failure.Bruce Momjian
2002-07-18Finished the Between patch Christopher started.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-06-20Update copyright to 2002.Bruce Momjian
2002-05-17Get rid of the last few uses of typeidTypeName() rather thanTom Lane
2002-05-12Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane
2002-04-28Make ruleutils.c use format_type for printing typenames. Minor tweaksTom Lane
2002-04-16Operators live in namespaces. CREATE/DROP/COMMENT ON OPERATOR takeTom 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-03-29pg_type has a typnamespace column; system now supports creating typesTom 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-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-07Back out domain patch until it works properly.Bruce Momjian
2002-03-06Ok. Updated patch attached.Bruce Momjian
2001-11-12If the alternatives for a CASE construct all have the same typmod,Tom Lane
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-10-08Fix transformExpr() to not scribble on its input datastructure whileTom Lane
2001-09-28Measure the current transaction time to milliseconds.Thomas G. Lockhart
2001-09-20Suppress gcc warning.Tom Lane
2001-09-20Provide tunable knob for x = NULL -> x IS NULL transformation, default to off.Peter Eisentraut
2001-08-09Use format_type sibling in backend error messages, so the user seesPeter Eisentraut