summaryrefslogtreecommitdiff
path: root/src/include/nodes
Commit message (Expand)AuthorAgeFilesLines
* Change the planner to allow indexscan qualification clauses to useTom Lane2005-06-131-1/+2
* Quick hack to allow the outer query's tuple_fraction to be passed downTom Lane2005-06-101-1/+3
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-092-39/+21
* Marginal hack to avoid spending a lot of time in find_join_rel duringTom Lane2005-06-082-2/+15
* Nab some low-hanging fruit: replace the planner's base_rel_list andTom Lane2005-06-061-7/+14
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-053-19/+44
* Replace the parser's namespace tree (which formerly had the sameTom Lane2005-06-051-6/+6
* Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane2005-06-031-3/+9
* Minor refactoring to eliminate duplicate code and make startup aTom Lane2005-05-141-1/+5
* Revise nodeMergejoin in light of example provided by Guillaume Smet.Tom Lane2005-05-131-10/+16
* Adjust nodeBitmapIndexscan to keep the target index opened from planTom Lane2005-05-051-1/+5
* Implement sharable row-level locks, and use them for foreign key referencesTom Lane2005-04-282-5/+10
* Remove support for OR'd indexscans internal to a single IndexScan planTom Lane2005-04-253-72/+64
* Adjust nodeBitmapIndexscan.c to not keep the index open across calls,Tom Lane2005-04-241-5/+1
* First cut at planner support for bitmap index scans. Lots to do yet,Tom Lane2005-04-221-13/+6
* Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane2005-04-212-4/+32
* Install some slightly realistic cost estimation for bitmap index scans.Tom Lane2005-04-211-4/+13
* Minor performance improvement: avoid unnecessary creation/unioning ofTom Lane2005-04-201-1/+3
* Create executor and planner-backend support for decoupled heap and indexTom Lane2005-04-194-5/+180
* Initial implementation of lossy-tuple-bitmap data structures.Tom Lane2005-04-172-4/+64
* Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway2005-04-071-1/+2
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-064-84/+65
* Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actuallyTom Lane2005-03-291-2/+15
* Add a back-link from IndexOptInfo structs to their parent RelOptInfoTom Lane2005-03-271-1/+2
* Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane2005-03-251-1/+3
* Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane2005-03-161-17/+28
* Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway2005-03-142-2/+10
* Make the behavior of HAVING without GROUP BY conform to the SQL spec.Tom Lane2005-03-101-1/+2
* Revise hash join code so that we can increase the number of batchesTom Lane2005-03-061-6/+11
* Trivial fix: change the reference to further documentation of pathkeys toNeil Conway2005-02-211-3/+3
* Generalize TRUNCATE to support truncating multiple tables in oneTom Lane2005-01-271-2/+2
* Some more missed copyright notices. Many of these look like theyTom Lane2005-01-012-4/+4
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-3113-26/+26
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-113-3/+43
* Change planner to use the current true disk file size as its estimate ofTom Lane2004-12-011-2/+2
* RelOptInfo.pages should really be declared as BlockNumber, not long.Tom Lane2004-11-261-2/+3
* Create 'default_tablespace' GUC variable that supplies a TABLESPACETom Lane2004-11-051-2/+1
* Trivial fix: clarify a comment.Neil Conway2004-10-271-2/+2
* Fix problems with SQL functions returning rowtypes that have droppedTom Lane2004-10-071-12/+3
* A few minor list-related cleanups:Neil Conway2004-09-271-3/+3
* Add some marginal tweaks to eliminate memory leakages associated withTom Lane2004-09-161-1/+2
* Make pltcl work on Win32. Magnus HaganderTom Lane2004-09-141-2/+2
* Pgindent run for 8.0.Bruce Momjian2004-08-298-82/+81
* Update copyright to 2004.Bruce Momjian2004-08-2913-26/+26
* Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian2004-08-201-1/+2
* Repair some issues with column aliases and RowExpr construction in theTom Lane2004-08-192-5/+21
* Standardize on the assumption that the arguments of a RowExpr correspondTom Lane2004-08-171-2/+15
* Label CVS tip as 8.0devel instead of 7.5devel. Adjust various commentsTom Lane2004-08-042-4/+4
* Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane2004-08-021-1/+3
* Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane2004-08-021-2/+11