summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
AgeCommit message (Expand)Author
2006-09-02Apply a simple solution to the problem of making INSERT/UPDATE/DELETETom Lane
2006-08-12Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-18Mark a few functions as static or NOT_USED.Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-11Alphabetically order reference to include files, "N" - "S".Bruce Momjian
2006-06-16DROP ... IF EXISTS for the following cases:Andrew Dunstan
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
2006-01-31Restructure planner's handling of inheritance. Rather than processingTom Lane
2006-01-06Fix failure to apply domain constraints to a NULL constant that's added toTom Lane
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-18A few trivial code cleanups motivated by reading warnings generatedTom Lane
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
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-04Change expandRTE() and ResolveNew() back to taking just the singleTom Lane
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-05-29Avoid unnecessary call of rangeTableEntry_used() for the result relationTom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-26Rewrite rewriteTargetList() to avoid O(N^2) behavior on wide target lists.Tom Lane
2005-03-10Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane
2005-01-27Change heap_modifytuple() to require a TupleDesc rather than aNeil Conway
2005-01-10Phase 1 of fix for 'SMgrRelation hashtable corrupted' problem. ThisTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-20Fix one more place where we were expecting lcons() to be nondestructiveTom Lane
2004-11-06When implementing a coercion to a domain type with a combinedTom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-19Repair some issues with column aliases and RowExpr construction in theTom Lane
2004-08-17Standardize on the assumption that the arguments of a RowExpr correspondTom Lane
2004-08-07Don't try to rewrite NEW references in a utility statement in a rule.Tom Lane
2004-06-16Represent type-specific length coercion functions as pg_cast entries,Tom Lane
2004-06-09Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-29Fix another place that assumed 'x = lcons(y, z)' would not have anyTom Lane
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-05-18setRuleCheckAsUser has to be applied to any subqueries appearing in aTom Lane
2004-05-10Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane
2004-04-01Replace TupleTableSlot convention for whole-row variables and functionTom Lane
2004-02-10Restructure smgr API as per recent proposal. smgr no longer depends onTom Lane
2004-01-14Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane
2004-01-14Revert ill-starred change of 13-Feb-02: it appeared to fix a problem ofTom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon