summaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
Commit message (Expand)AuthorAgeFilesLines
* Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane2011-02-221-16/+7
* Implement an API to let foreign-data wrappers actually be functional.Tom Lane2011-02-201-3/+15
* Per-column collation supportPeter Eisentraut2011-02-081-2/+15
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Provide hashing support for arrays.Tom Lane2010-10-301-1/+4
* Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane2010-10-151-16/+24
* Behave correctly if INSERT ... VALUES is decorated with additional clauses.Tom Lane2010-10-021-1/+10
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Give a suitable HINT when an INSERT's data source is a RowExpr containingTom Lane2010-09-181-1/+60
* Small refactoring of makeVar() from a TargetEntryPeter Eisentraut2010-08-271-6/+2
* pgindent run for 9.0Bruce Momjian2010-02-261-24/+25
* Tweak the order of processing of WITH clauses so that they are processedTom Lane2010-02-121-16/+16
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-151-23/+11
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane2009-12-161-20/+37
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-151-6/+7
* Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane2009-10-311-62/+10
* When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane2009-10-281-18/+37
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-271-53/+11
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-6/+11
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-121-2/+3
* Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane2009-09-091-6/+84
* Modify the definition of window-function PARTITION BY and ORDER BY clausesTom Lane2009-08-271-5/+8
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-43/+45
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-9/+23
* Defend against null input in analyze_requires_snapshot(), per reportTom Lane2009-01-081-2/+6
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Support window functions a la SQL:2008.Tom Lane2008-12-281-2/+53
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-131-1/+50
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-151-1/+3
* Improve parser error location for cases where an INSERT or UPDATE commandTom Lane2008-10-071-6/+10
* Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane2008-10-061-3/+3
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-9/+98
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-91/+142
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-85/+84
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-3/+2
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-071-1/+28
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-021-5/+23
* Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane2008-07-311-2/+5
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-181-4/+5
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-191-1/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-7/+7
* Tweak new error messages to match the actual syntax of DECLARE CURSOR.Tom Lane2007-10-251-3/+3
* Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane2007-10-241-1/+15
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-1886/+42
* transformColumnDefinition failed to complain aboutTom Lane2007-06-201-2/+6
* Remove duplicate #include.Neil Conway2007-06-191-2/+1
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-5/+5
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-29/+149