summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
Commit message (Expand)AuthorAgeFilesLines
* Refactor typenameTypeId()Peter Eisentraut2010-10-251-5/+5
* Improve handling of domains over arrays.Tom Lane2010-10-211-10/+8
* Fix incorrect generation of whole-row variables in planner.Tom Lane2010-10-191-74/+2
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Improved version of patch to protect pg_get_expr() against misuse:Tom Lane2010-07-291-97/+11
* pgindent run for 9.0, second runBruce Momjian2010-07-061-30/+31
* stringToNode() and deparse_expression_pretty() crash on invalid input,Heikki Linnakangas2010-06-301-2/+87
* pgindent run for 9.0Bruce Momjian2010-02-261-25/+26
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane2010-01-011-1/+2
* 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