summaryrefslogtreecommitdiff
path: root/src/include/nodes/primnodes.h
Commit message (Expand)AuthorAgeFilesLines
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-211-1/+21
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-101-3/+9
* pgindent run for 8.2.Bruce Momjian2006-10-041-3/+3
* Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane2006-09-281-3/+6
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-271-3/+3
* Allow include files to compile own their own.Bruce Momjian2006-07-131-2/+1
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-221-14/+17
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-281-43/+77
* Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane2005-12-201-7/+2
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-47/+42
* Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane2005-06-261-1/+18
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-061-71/+54
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-111-1/+22
* Pgindent run for 8.0.Bruce Momjian2004-08-291-10/+11
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Repair some issues with column aliases and RowExpr construction in theTom Lane2004-08-191-4/+4
* Standardize on the assumption that the arguments of a RowExpr correspondTom Lane2004-08-171-2/+15
* Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane2004-06-091-3/+32
* Use the new List API function names throughout the backend, and disable theNeil Conway2004-05-301-3/+3
* Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane2004-05-101-1/+18
* Replace TupleTableSlot convention for whole-row variables and functionTom Lane2004-04-011-4/+3
* Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane2004-03-171-3/+34
* Tweak planner so that index expressions and predicates are matched toTom Lane2004-03-141-2/+2
* Cleanup: move the 'Value' node into a separate file, rather than puttingNeil Conway2004-01-071-1/+2
* make sure the $Id tags are converted to $PostgreSQL as well ...PostgreSQL Daemon2003-11-291-1/+1
* Fix ARRAY[] construct so that in multidimensional case, elements canTom Lane2003-08-171-6/+8
* Rewriter and planner should use only resno, not resname, to identifyTom Lane2003-08-111-10/+29
* Another pgindent run with updated typedefs.Bruce Momjian2003-08-081-13/+13
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-39/+40
* Code review for UPDATE tab SET col = DEFAULT patch ... whack it aroundTom Lane2003-07-031-1/+14
* Support expressions of the form 'scalar op ANY (array)' andTom Lane2003-06-291-1/+20
* Back out array mega-patch.Bruce Momjian2003-06-251-20/+4
* Array mega-patch.Bruce Momjian2003-06-241-4/+20
* Implement outer-level aggregates to conform to the SQL spec, withTom Lane2003-06-061-1/+2
* Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane2003-05-061-15/+22
* First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane2003-04-081-16/+31
* COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane2003-02-161-1/+19
* Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane2003-02-091-3/+6
* Determine the set of constraints applied to a domain at executorTom Lane2003-02-031-20/+14
* Further tweaking of parsetree & plantree representation of SubLinks.Tom Lane2003-01-101-36/+36
* Adjust parser so that 'x NOT IN (subselect)' is converted toTom Lane2003-01-091-5/+10
* Clean up plantree representation of SubPlan-s --- SubLink does not appearTom Lane2002-12-141-39/+49
* Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane2002-12-131-13/+1
* Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane2002-12-121-6/+10
* Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane2002-12-121-169/+316
* Code review for IS DISTINCT FROM patch. Fix incorrect constant-foldingTom Lane2002-11-301-2/+8
* Use Params, rather than run-time-modified Const nodes, to handleTom Lane2002-11-261-2/+2