summaryrefslogtreecommitdiff
path: root/src/backend/rewrite
AgeCommit message (Expand)Author
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
2001-05-03Permission checking wasn't quite right for insert/update/delete rules,Tom Lane
2001-05-03Permissions were not checked correctly when one view invokes another.Tom Lane
2001-04-18Make the world safe for passing whole rows of views to functions. ThisTom Lane
2001-04-17Add some defenses to guard against case where a rule refers to a tableTom Lane
2001-03-23Fix comments that were mis-wrapped, for Tom Lane.Bruce Momjian
2001-03-22Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian
2001-03-22pgindent run. Make it all clean.Bruce Momjian
2001-01-27Repair bug reported by Huxton, 1/24/01. We need to include a rule'sTom Lane
2001-01-27Refuse to try to attach a condition to a NOTIFY or other utility statement,Tom Lane
2001-01-24Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian
2001-01-23Fix all the places that called heap_update() and heap_delete() withoutTom Lane
2001-01-13Relax test on typmod matching between a table and its proposed ON SELECTTom Lane
2001-01-03Fix breakage of rules using NOTIFY actions, per bug report and patchTom Lane
2000-12-07Make application of FOR UPDATE to a view work exactly like the parser'sTom Lane
2000-12-06Clean up handling of FOR UPDATE inside views and subselects ... make itTom Lane
2000-12-05Repair breakage of rules containing INSERT ... SELECT actions, per bugTom Lane
2000-11-16Change SearchSysCache coding conventions so that a reference count isTom Lane
2000-11-08Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane
2000-10-26Re-implement LIMIT/OFFSET as a plan node type, instead of a hack inTom Lane
2000-10-05Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane
2000-09-29Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane
2000-09-12First cut at full support for OUTER JOINs. There are still a few looseTom Lane
2000-09-12Fix relation-to-view conversion so that it doesn't try to convert a plainTom Lane
2000-09-12This patch implements a different "relkind"Bruce Momjian
2000-09-12O.K. -Bruce Momjian
2000-09-06Code cleanup of user name and user id handling in the backend. The currentPeter Eisentraut
2000-08-31Fix relative path references so that make knowns which dependencies referPeter Eisentraut
2000-08-08Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane
2000-07-30Type lztext is toast.Tom Lane
2000-07-09Make view/rule permission checking behave properly withTom Lane
2000-06-30Use a private memory context to store rule information in each relcacheTom Lane
2000-06-28First phase of memory management rewrite (see backend/utils/mmgr/READMETom Lane
2000-06-15Final #include cleanup.Bruce Momjian
2000-06-15Clean up #include's.Bruce Momjian
2000-06-12Rename rule CURRENT to OLD in source tree. Add mapping for backwardBruce Momjian
2000-05-30Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian
2000-05-29Generated header files parse.h and fmgroids.h are now copied intoTom Lane
2000-05-28First round of changes for new fmgr interface. fmgr itself and theTom Lane
2000-04-27Except_Intersect_Rewrite() failed to ignore resjunk targetlist entries,Tom Lane
2000-04-20Correct error in rewriter that caused SELECT count(*) FROM viewTom Lane