summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
AgeCommit message (Expand)Author
2003-05-02Portal and memory management infrastructure for extended query protocol.Tom Lane
2003-04-29Infrastructure for deducing Param types from context, in the same wayTom Lane
2003-02-25Remove REWRITE_INVOKE_MAX in favor of making an accurate check forTom Lane
2003-02-13Repair rule permissions-checking bug reported by Tim Burgess 10-Feb-02:Tom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2003-01-20IN clauses appearing at top level of WHERE can now be handled as joins.Tom Lane
2003-01-17Adjust API of expression_tree_mutator and query_tree_mutator toTom Lane
2002-12-17To suppress memory leakage in long-lived Lists, lremove() should pfreeTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-05More cleanup of userid to be AclId rather than Oid.Bruce Momjian
2002-10-20Rule rewriter was doing the wrong thing with conditional INSTEAD rulesTom Lane
2002-10-19Fix rewrite code so that rules are in fact executed in order by name,Tom Lane
2002-10-14Adjust handling of command status strings in the presence of rules,Tom Lane
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-11Tweak querytree-dependency-extraction code so that columns of tablesTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.Tom Lane
2002-08-29Rephrase 'Cannot insert into a view' and related messages, perTom Lane
2002-08-26Modify array operations to include array's element type OID in theTom Lane
2002-08-05Restructure system-catalog index updating logic. Instead of havingTom Lane
2002-08-02ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane
2002-07-20oid is needed, it is added at the end of the struct (after the nullBruce Momjian
2002-07-18The attached patch (against HEAD) implementsBruce Momjian
2002-07-16Add code to extract dependencies from an expression tree, and use itTom Lane
2002-07-12Second phase of committing Rod Taylor's pg_depend/pg_constraint patch.Tom Lane
2002-06-20Update copyright to 2002.Bruce Momjian
2002-05-21Remove global variable scanCommandId in favor of storing a command IDTom Lane
2002-05-20Restructure indexscan API (index_beginscan, index_getnext) perTom Lane
2002-05-12First pass at set-returning-functions in FROM, by Joe Conway withTom Lane
2002-04-27Restructure aclcheck error reporting to make permission-failureTom Lane
2002-04-19Change naming rule for ON SELECT rules of views: they're all justTom Lane
2002-04-18Rule names are now unique per-relation, rather than unique globally.Tom Lane
2002-04-11Restructure representation of aggregate functions so that they have pg_procTom Lane
2002-04-05Undo not-so-hot decision to postpone insertion of default values intoTom Lane
2002-03-29pg_type has a typnamespace column; system now supports creating typesTom Lane
2002-03-26pg_class has a relnamespace column. You can create and access tablesTom Lane
2002-03-22A little further progress on schemas: push down RangeVars intoTom Lane
2002-03-21Change the aclchk.c routines to uniformly use OIDs to identify theTom Lane
2002-03-21First phase of SCHEMA changes, concentrating on fixing the grammar andTom Lane
2002-03-12Restructure representation of join alias variables. An explicit JOINTom Lane
2001-11-05New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian
2001-10-28Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian
2001-10-25pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian
2001-09-07Revert treatment of NOTIFY in rules to its pre-7.1 behavior: notify willTom Lane
2001-08-12Make ALTER TABLE RENAME on a view rename the view's on-select rule too.Tom Lane
2001-08-10Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane
2001-07-09Fix rule rewriter so that new ordering of ON INSERT actions appliesTom Lane
2001-07-06Fire rule actions ON INSERT after original statement (if not INSTEAD).Jan Wieck
2001-06-13Remove some dead code, simplify calling convention.Tom Lane
2001-06-12Repair problem with multi-action rules in combination with any nontrivialTom Lane