summaryrefslogtreecommitdiff
path: root/src/backend/rewrite/rewriteHandler.c
AgeCommit message (Expand)Author
2011-06-07Fix rewriter to cope (more or less) with CTEs in the query being rewritten.Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-26Pass collation to makeConst() instead of looking it up internally.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-19Fix incorrect generation of whole-row variables in planner.Tom Lane
2010-10-10Support triggers on views.Tom Lane
2010-09-20Remove cvs keywords from all files.Magnus Hagander
2010-02-26pgindent run for 9.0Bruce Momjian
2010-01-02Update copyright for the year 2010.Bruce Momjian
2009-11-05Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane
2009-10-28Fix AcquireRewriteLocks to be sure that it acquires the right lock strengthTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-27Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-09-02Fix subquery pullup to wrap a PlaceHolderVar around the entire RowExprTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-01-27Revert updatable viewsPeter Eisentraut
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-22Automatic view update rulesPeter Eisentraut
2009-01-01Update copyright for 2009.Bruce Momjian
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-09-24Fix more problems with rewriter failing to set Query.hasSubLinks when insertingTom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-11-16Small comment spacing improvement.Bruce Momjian
2007-11-15Fix pgindent to properly handle 'else' and single-line comments on theBruce Momjian
2007-09-06Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane
2007-03-19Changes pg_trigger and extend pg_rewrite in order to allow triggers andJan Wieck
2007-03-17Fix up the remaining places where the expression node structure would loseTom Lane
2007-03-01Fix markQueryForLocking() to work correctly in the presence of nested views.Tom Lane
2007-02-01Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2006-10-06Message style improvementsPeter Eisentraut
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-02Apply a simple solution to the problem of making INSERT/UPDATE/DELETETom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-04-30Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2005-11-23Fix problems with rewriter failing to set Query.hasSubLinks when insertingTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-08-01Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane
2005-07-28Make use of new list primitives list_append_unique and list_concat_uniqueTom Lane