summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2016-07-01Set consider_parallel correctly for upper planner rels.Robert Haas
2016-06-27Fix CREATE MATVIEW/CREATE TABLE AS ... WITH NO DATA to not plan the query.Tom Lane
2016-06-26Avoid making a separate pass over the query to check for partializability.Tom Lane
2016-06-26Rethink node-level representation of partial-aggregation modes.Tom Lane
2016-06-21Refactor planning of projection steps that don't need a Result plan node.Tom Lane
2016-06-18Restore foreign-key-aware estimation of join relation sizes.Tom Lane
2016-06-18Fix handling of argument and result datatypes for partial aggregation.Tom Lane
2016-06-17Add VACUUM (DISABLE_PAGE_SKIPPING) for emergencies.Robert Haas
2016-06-13In planner.c, avoid assuming that all PathTargets have sortgrouprefs.Tom Lane
2016-06-10Remove reltarget_has_non_vars flag.Tom Lane
2016-06-10Refactor to reduce code duplication for function property checking.Tom Lane
2016-06-09pgindent run for 9.6Robert Haas
2016-06-09Don't generate parallel paths for rels with parallel-restricted outputs.Robert Haas
2016-06-09Eliminate "parallel degree" terminology.Robert Haas
2016-06-07Revert "Use Foreign Key relationships to infer multi-column join selectivity".Tom Lane
2016-04-27Fix EXPLAIN VERBOSE output for parallel aggregate.Robert Haas
2016-04-21Comment improvements for ForeignPath.Robert Haas
2016-04-15Tweak EXPLAIN for parallel query to show workers launched.Robert Haas
2016-04-08Expose more out/readfuncs support functions.Andres Freund
2016-04-08Revert CREATE INDEX ... INCLUDING ...Teodor Sigaev
2016-04-08CREATE INDEX ... INCLUDING (column[, ...])Teodor Sigaev
2016-04-08Add a 'parallel_degree' reloption.Robert Haas
2016-04-07Load FK defs into relcache for use by plannerSimon Riggs
2016-04-06Run pgindent on a batch of (mostly-planner-related) source files.Tom Lane
2016-04-05Support ALTER THING .. DEPENDS ON EXTENSIONAlvaro Herrera
2016-03-31Support using index-only scans with partial indexes in more cases.Tom Lane
2016-03-29Allow aggregate transition states to be serialized and deserialized.Robert Haas
2016-03-29Rework custom scans to work more like the new extensible node stuff.Robert Haas
2016-03-24Support CREATE ACCESS METHODAlvaro Herrera
2016-03-21Support parallel aggregation.Robert Haas
2016-03-18Directly modify foreign tables.Robert Haas
2016-03-14Provide a planner hook at a suitable place for creating upper-rel Paths.Tom Lane
2016-03-14Rethink representation of PathTargets.Tom Lane
2016-03-14Update more comments for 96198d94cb7adc664bda341842dc8db671d8be72.Robert Haas
2016-03-12Widen query numbers-of-tuples-processed counters to uint64.Tom Lane
2016-03-09Improve handling of group-column indexes in GroupingSetsPath.Tom Lane
2016-03-07Make the upper part of the planner work by generating and comparing Paths.Tom Lane
2016-02-19Add an explicit representation of the output targetlist to Paths.Tom Lane
2016-02-12Introduce extensible node types.Robert Haas
2016-02-07Introduce a new GUC force_parallel_mode for testing purposes.Robert Haas
2016-02-03Allow parallel custom and foreign scans.Robert Haas
2016-02-03Remove CustomPath's TextOutCustomPath method.Robert Haas
2016-01-28Only try to push down foreign joins if the user mapping OIDs match.Robert Haas
2016-01-21Add defenses against putting expanded objects into Const nodes.Tom Lane
2016-01-20Support parallel joins, and make related improvements.Robert Haas
2016-01-20Support multi-stage aggregation.Robert Haas
2016-01-18Restructure index access method API to hide most of it at the C level.Tom Lane
2016-01-02Update copyright for 2016Bruce Momjian
2015-12-23Allow omitting one or both boundaries in an array slice specifier.Tom Lane
2015-12-18Revert 9246af6799819847faa33baf441251003acbb8fe becauseTeodor Sigaev