summaryrefslogtreecommitdiff
path: root/src/backend/nodes
AgeCommit message (Expand)Author
2011-11-03Support range data types.Heikki Linnakangas
2011-10-23Don't trust deferred-unique indexes for join removal.Tom Lane
2011-10-14Measure the number of all-visible pages for use in index-only scan costing.Tom Lane
2011-10-11Rearrange the implementation of index-only scans.Tom Lane
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-09-11Remove many -Wcast-qual warningsPeter Eisentraut
2011-09-04Can't print PlannerGlobal's subroots list in outfuncs.Tom Lane
2011-09-03Rearrange planner to save the whole PlannerInfo (subroot) for a subquery.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-08-20Fix performance problem when building a lossy tidbitmap.Tom Lane
2011-08-16Revise sinval code to remove no-longer-used tuple TID from inval messages.Tom Lane
2011-08-05Allow per-column foreign data wrapper options.Robert Haas
2011-07-18Avoid index rebuild for no-rewrite ALTER TABLE .. ALTER TYPE.Robert Haas
2011-07-16Replace errdetail("%s", ...) with errdetail_internal("%s", ...).Tom Lane
2011-06-16Avoid compiler warnings due to possibly unused variablesPeter Eisentraut
2011-04-18Fix handling of collations in multi-row VALUES constructs.Tom Lane
2011-04-10pgindent run before PG 9.1 beta 1.Bruce Momjian
2011-03-26More collations cleanup, from trawling for missed collation assignments.Tom Lane
2011-03-26Pass collation to makeConst() instead of looking it up internally.Tom Lane
2011-03-22Make FKs valid at creation when added as column constraints.Simon Riggs
2011-03-22Reimplement planner's handling of MIN/MAX aggregate optimization (again).Tom Lane
2011-03-20Revise collation derivation method and expression-tree representation.Tom Lane
2011-03-11Split CollateClause into separate raw and analyzed node types.Tom Lane
2011-03-10Remove collation information from TypeName, where it does not belong.Tom Lane
2011-03-04Allow non-superusers to create (some) extensions.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2011-02-23Add a relkind field to RangeTblEntry to avoid some syscache lookups.Tom Lane
2011-02-20Implement an API to let foreign-data wrappers actually be functional.Tom Lane
2011-02-19Create the catalog infrastructure for foreign-data-wrapper handlers.Tom Lane
2011-02-17Fix bogus test for hypothetical indexes in get_actual_variable_range().Tom Lane
2011-02-12Add support for multiple versions of an extension and ALTER EXTENSION UPDATE.Tom Lane
2011-02-10Extend "ALTER EXTENSION ADD object" to permit "DROP object" as well.Tom Lane
2011-02-10Fix improper matching of resjunk column names for FOR UPDATE in subselect.Tom Lane
2011-02-09Implement "ALTER EXTENSION ADD object".Tom Lane
2011-02-08Core support for "extensions", which are packages of SQL objects.Tom Lane
2011-02-08Per-column collation supportPeter Eisentraut
2011-01-25Implement ALTER TABLE ADD UNIQUE/PRIMARY KEY USING INDEX.Tom Lane
2011-01-13Fix PlanRowMark/ExecRowMark structures to handle inheritance correctly.Tom Lane
2011-01-02Basic foreign table support.Robert Haas
2011-01-01Stamp copyrights for year 2011.Bruce Momjian
2010-12-22Use memcmp() rather than strncmp() when shorter string length is known.Robert Haas
2010-12-13Generalize concept of temporary relations to "relation persistence".Robert Haas
2010-12-07Add a stack overflow check to copyObject().Tom Lane
2010-12-03Create core infrastructure for KNNGIST.Tom Lane
2010-11-24Create the system catalog infrastructure needed for KNNGIST.Tom Lane
2010-11-23Propagate ALTER TYPE operations to typed tablesPeter Eisentraut
2010-11-23Remove useless whitespace at end of linesPeter Eisentraut
2010-11-18Further fallout from the MergeAppend patch.Tom Lane
2010-11-13Add missing outfuncs.c support for struct InhRelation.Tom Lane
2010-11-04Reimplement planner's handling of MIN/MAX aggregate optimization.Tom Lane