summaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
AgeCommit message (Expand)Author
2013-12-15Allow empty target list in SELECT.Tom Lane
2013-08-02Fix crash in error report of invalid tuple lockAlvaro Herrera
2013-07-23Tweak FOR UPDATE/SHARE error message wording (again)Alvaro Herrera
2013-05-29pgindent run for release 9.3Bruce Momjian
2013-05-06Disallow unlogged materialized views.Tom Lane
2013-04-27Incidental cleanup of matviews code.Tom Lane
2013-04-12Clean up the mess around EXPLAIN and materialized views.Tom Lane
2013-03-10Support writable foreign tables.Tom Lane
2013-03-04Add a materialized view relations.Kevin Grittner
2013-02-06Improve error message wordingAlvaro Herrera
2013-01-23Improve concurrency of foreign key lockingAlvaro Herrera
2013-01-01Update copyrights for 2013Bruce Momjian
2012-11-12Check for stack overflow in transformSetOperationTree().Tom Lane
2012-08-19Allow OLD and NEW in multi-row VALUES within rules.Tom Lane
2012-08-10Centralize the logic for detecting misplaced aggregates, window funcs, etc.Tom Lane
2012-08-08Merge parser's p_relnamespace and p_varnamespace lists into a single list.Tom Lane
2012-08-07Implement SQL-standard LATERAL subqueries.Tom Lane
2012-07-31Fix WITH attached to a nested set operation (UNION/INTERSECT/EXCEPT).Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-03-27Add some infrastructure for contrib/pg_stat_statements.Tom Lane
2012-03-21Clean up compiler warnings from unused variables with asserts disabledPeter Eisentraut
2012-03-20Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-02-08Check misplaced window functions before checking aggregate/group by sanity.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-11-25Fix unsupported options in CREATE TABLE ... AS EXECUTE.Tom Lane
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-06-04Expose the "*VALUES*" alias that we generate for a stand-alone VALUES list.Tom Lane
2011-04-22Make a code-cleanup pass over the collations patch.Tom Lane
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-16Improve handling of unknown-type literals in UNION/INTERSECT/EXCEPT.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2011-02-23Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane
2011-02-20Implement an API to let foreign-data wrappers actually be functional.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-10-31Provide hashing support for arrays.Tom Lane
2010-10-15Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane
2010-10-03Behave correctly if INSERT ... VALUES is decorated with additional clauses.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-09-18Give a suitable HINT when an INSERT's data source is a RowExpr containingTom Lane
2010-08-27Small refactoring of makeVar() from a TargetEntryPeter Eisentraut
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-12Tweak the order of processing of WITH clauses so that they are processedTom Lane
2010-01-15Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-12-16Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-10-31Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane