summaryrefslogtreecommitdiff
path: root/src/backend/rewrite/rewriteHandler.c
Commit message (Expand)AuthorAgeFilesLines
* Rephrase 'Cannot insert into a view' and related messages, perTom Lane2002-08-291-4/+7
* Modify array operations to include array's element type OID in theTom Lane2002-08-261-3/+3
* ALTER TABLE DROP COLUMN works. Patch by Christopher Kings-Lynne,Tom Lane2002-08-021-1/+5
* The attached patch (against HEAD) implementsBruce Momjian2002-07-181-3/+2
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
* Restructure representation of aggregate functions so that they have pg_procTom Lane2002-04-111-2/+2
* Undo not-so-hot decision to postpone insertion of default values intoTom Lane2002-04-051-2/+299
* A little further progress on schemas: push down RangeVars intoTom Lane2002-03-221-24/+3
* Restructure representation of join alias variables. An explicit JOINTom Lane2002-03-121-9/+17
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-31/+33
* Fix rule rewriter so that new ordering of ON INSERT actions appliesTom Lane2001-07-091-18/+34
* Fire rule actions ON INSERT after original statement (if not INSTEAD).Jan Wieck2001-07-061-2/+5
* Remove some dead code, simplify calling convention.Tom Lane2001-06-131-62/+44
* Repair problem with multi-action rules in combination with any nontrivialTom Lane2001-06-121-20/+19
* Permissions were not checked correctly when one view invokes another.Tom Lane2001-05-031-1/+3
* Add some defenses to guard against case where a rule refers to a tableTom Lane2001-04-171-5/+27
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-29/+23
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-61/+62
* Repair bug reported by Huxton, 1/24/01. We need to include a rule'sTom Lane2001-01-271-25/+33
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Fix breakage of rules using NOTIFY actions, per bug report and patchTom Lane2001-01-031-1/+2
* Make application of FOR UPDATE to a view work exactly like the parser'sTom Lane2000-12-071-22/+42
* Clean up handling of FOR UPDATE inside views and subselects ... make itTom Lane2000-12-061-29/+1
* Repair breakage of rules containing INSERT ... SELECT actions, per bugTom Lane2000-12-051-170/+150
* Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane2000-11-081-14/+48
* Reimplementation of UNION/INTERSECT/EXCEPT. INTERSECT/EXCEPT now meet theTom Lane2000-10-051-549/+39
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-291-629/+173
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-121-277/+155
* Code cleanup of user name and user id handling in the backend. The currentPeter Eisentraut2000-09-061-2/+2
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-4/+2
* Use a private memory context to store rule information in each relcacheTom Lane2000-06-301-6/+6
* Clean up #include's.Bruce Momjian2000-06-151-1/+2
* Rename rule CURRENT to OLD in source tree. Add mapping for backwardBruce Momjian2000-06-121-8/+8
* Remove unused include files. Do not touch /port or includes used by defines.Bruce Momjian2000-05-301-3/+1
* Except_Intersect_Rewrite() failed to ignore resjunk targetlist entries,Tom Lane2000-04-271-33/+50
* Correct error in rewriter that caused SELECT count(*) FROM viewTom Lane2000-04-201-19/+19
* Ye-old pgindent run. Same 4-space tabs.Bruce Momjian2000-04-121-63/+84
* When rewriting an aggregate introduced into WHERE, allow agg argument toTom Lane2000-04-041-11/+14
* Fix some (more) problems with subselects in rules. Rewriter failed toTom Lane2000-03-161-146/+22
* Fix performance problem in fireRIRonSubselect: with nested subqueries,Tom Lane2000-03-121-12/+6
* Redesign DISTINCT ON as discussed in pgsql-sql 1/25/00: syntax is nowTom Lane2000-01-271-10/+10
* Add:Bruce Momjian2000-01-261-2/+3
* Pass atttypmod to CoerceTargetExpr, so that it can pass it on toTom Lane2000-01-171-2/+2
* Fix it's and its to be correct.Bruce Momjian2000-01-051-2/+2
* Implement subselects in target lists. Also, relax requirement thatTom Lane1999-11-151-76/+78
* Eliminate RewritePreprocessQuery, which was taking anTom Lane1999-11-011-72/+22
* Except_Intersect_Rewrite() forgot to move LIMIT info to newTom Lane1999-10-171-1/+8
* Fix planner and rewriter to follow SQL semantics for tables that areTom Lane1999-10-071-35/+56
* Stick finger into a couple more holes in the leaky dike ofTom Lane1999-10-021-1/+16
* Clean up rewriter routines to use expression_tree_walker andTom Lane1999-10-011-1537/+497