summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
AgeCommit message (Expand)Author
2012-06-30Prevent CREATE TABLE LIKE/INHERITS from (mis) copying whole-row Vars.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-20Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-03-09Extend object access hook framework to support arguments, and DROP.Robert Haas
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-22Add a security_barrier option for views.Robert Haas
2011-11-30Improve table locking behavior in the face of current DDL.Robert Haas
2011-11-28Ensure that whole-row junk Vars are always of composite type.Tom Lane
2011-11-18Further consolidation of DROP statement handling.Robert Haas
2011-10-21More cleanup after failed reduced-lock-levels-for-DDL feature.Tom Lane
2011-09-03Rearrange planner to save the whole PlannerInfo (subroot) for a subquery.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-07-09Try to acquire relation locks in RangeVarGetRelid.Robert Haas
2011-07-07Finish disabling reduced-lock-levels-for-DDL feature.Tom Lane
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-06-28Add a missing_ok argument to get_object_address().Robert Haas
2011-06-16Index tuple data arrays using Anum_xxx symbolic constants instead of "i++".Tom Lane
2011-06-09Pgindent run before 9.1 beta2.Bruce Momjian
2011-06-07Fix rewriter to cope (more or less) with CTEs in the query being rewritten.Tom Lane
2011-04-11Clean up most -Wunused-but-set-variable warnings from gcc 4.6Peter Eisentraut
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-08Core support for "extensions", which are packages of SQL objects.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-11-25Object access hook framework, with post-creation hook.Robert Haas
2010-11-04Reimplement planner's handling of MIN/MAX aggregate optimization.Tom Lane
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-08-05Standardize get_whatever_oid functions for other object types.Robert Haas
2010-07-28Reduce lock levels of CREATE TRIGGER and some ALTER TABLE, CREATE RULE actions.Simon Riggs
2010-02-26pgindent run for 9.0Bruce Momjian
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
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-05-13Add checks to DefineQueryRewrite() to prohibit attaching rules to relationsTom Lane
2009-02-25Get rid of the rather fuzzily defined FlattenedSubLink node type in favor ofTom Lane
2009-01-27Revert updatable viewsPeter Eisentraut
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane