summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
Commit message (Expand)AuthorAgeFilesLines
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-151-5/+6
* A better fix for the "ARRAY[...]::domain" problem. The previous patch worked,Heikki Linnakangas2009-11-131-24/+16
* When you do "ARRAY[...]::domain", where domain is a domain over an array type,Heikki Linnakangas2009-11-131-1/+15
* Fix WHERE CURRENT OF to work as designed within plpgsql. The argumentTom Lane2009-11-091-25/+35
* Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane2009-10-311-166/+265
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-271-2/+2
* Remove add_missing_from GUC and associated parser support for "implicit RTEs".Tom Lane2009-10-211-9/+8
* Support use of function argument names to identify which actual argumentsTom Lane2009-10-081-1/+10
* Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane2009-09-091-2/+2
* Make backend header files C++ safePeter Eisentraut2009-07-161-5/+5
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-35/+36
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-1/+4
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Support window functions a la SQL:2008.Tom Lane2008-12-281-5/+7
* Better solution to the IN-list issue: instead of having an arbitrary cutoff,Tom Lane2008-10-261-34/+30
* Add a heuristic to transformAExprIn() to make it prefer expanding "x IN (list)"Tom Lane2008-10-251-11/+28
* When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane2008-10-061-1/+2
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-17/+33
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-19/+63
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-104/+162
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-483/+2
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-221-1/+10
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-161-20/+16
* Remove typename from A_Const.Alvaro Herrera2008-04-291-6/+2
* Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane2008-03-201-40/+167
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-7/+7
* pgindent run for 8.3.Bruce Momjian2007-11-151-32/+32
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-111-6/+4
* Remove the hack in the grammar that "optimized away" DEFAULT NULL clauses.Tom Lane2007-10-291-1/+16
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-7/+3
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-111-38/+76
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-1/+19
* Downgrade implicit casts to text to be assignment-only, except for the onesTom Lane2007-06-051-1/+5
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-2/+3
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-2/+2
* Fix array coercion expressions to ensure that the correct volatility isTom Lane2007-03-271-33/+60
* Ooops, got only one of the two ArrayExpr variants correct in firstTom Lane2007-03-171-3/+7
* Fix up the remaining places where the expression node structure would loseTom Lane2007-03-171-7/+66
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-8/+3
* Add support for optionally escaping periods when converting SQL identifiersPeter Eisentraut2007-02-111-4/+4
* Implement XMLSERIALIZE for real. Analogously, make the xml to text castPeter Eisentraut2007-02-031-1/+45
* Various fixes in the logic of XML functions:Peter Eisentraut2007-01-251-2/+3
* Add support for xmlval IS DOCUMENT expression.Peter Eisentraut2007-01-141-2/+9
* Fix compiler warningPeter Eisentraut2007-01-121-1/+4
* Allow for arbitrary data types as content in XMLELEMENT. The originalPeter Eisentraut2007-01-121-6/+2
* Prevent duplicate attribute names in XMLELEMENT.Peter Eisentraut2007-01-081-3/+19
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-301-25/+4
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-241-58/+109