]> granicus.if.org Git - postgresql/history - src/include/executor
Create a type-specific typanalyze routine for tsvector, which collects stats
[postgresql] / src / include / executor /
2008-05-14 Tom LaneMove the "instr_time" typedef and associated macros...
2008-04-13 Tom LaneSince createplan.c no longer cares whether index operat...
2008-04-01 Tom LaneAdd SPI-level support for executing SQL commands with...
2008-03-28 Tom LaneSupport statement-level ON TRUNCATE triggers. Simon...
2008-03-18 Tom LaneArrange to "inline" SQL functions that appear in a...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-11-30 Tom LaneAvoid incrementing the CommandCounter when CommandCount...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-08-15 Tom LaneArrange to cache a ResultRelInfo in the executor's...
2007-08-15 Tom LaneRepair problems occurring when multiple RI updates...
2007-07-25 Magnus HaganderRename DLLIMPORT macro to PGDLLIMPORT to avoid conflict...
2007-06-11 Tom LaneImprove UPDATE/DELETE WHERE CURRENT OF so that they...
2007-06-11 Tom LaneSupport UPDATE/DELETE WHERE CURRENT OF cursor_name...
2007-06-07 Tom LaneRework temp_tablespaces patch so that temp tablespaces...
2007-06-03 Tom LaneCreate a GUC parameter temp_tablespaces that allows...
2007-06-01 Tom LaneBuy back some of the cycles spent in more-expensive...
2007-04-16 Tom LaneSupport scrollable cursors (ie, 'direction' clause...
2007-04-16 Tom LaneExpose more cursor-related functionality in SPI: specif...
2007-03-25 Tom LaneRemove the prohibition on executing cursor commands...
2007-03-15 Tom LaneMake use of plancache module for SPI plans. In particu...
2007-02-27 Tom LaneGet rid of the separate EState for subplans, and just...
2007-02-22 Tom LaneTurn the rangetable used by the executor into a flat...
2007-02-20 Tom LaneRemove the Query structure from the executor's API...
2007-02-15 Tom LaneRepair oversight in 8.2 change that improved the handli...
2007-02-06 Tom LaneAdd support for cross-type hashing in hashed subplans...
2007-02-02 Tom LaneRepair failure to check that a table is still compatibl...
2007-01-30 Tom LaneAdd support for cross-type hashing in hash index search...
2007-01-28 Tom LaneImprove hash join to discard input tuples immediately...
2007-01-10 Tom LaneChange the planner-to-executor API so that the planner...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-12-26 Tom LaneFix failure due to accessing an already-freed tuple...
2006-12-04 Tom LaneRefactor ExecGetJunkAttribute to avoid searching for...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-09-03 Bruce MomjianRevert FETCH/MOVE int64 patch. Was using incorrect...
2006-09-02 Bruce MomjianChange FETCH/MOVE to use int8.
2006-08-27 Tom LaneAdd new return codes SPI_OK_INSERT_RETURNING etc to...
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-08-04 Tom LaneFix domain_in() bug exhibited by Darcy Buskermolen...
2006-08-02 Joe ConwayAdd support for multi-row VALUES clauses as part of...
2006-07-13 Bruce MomjianMore include file adjustments.
2006-07-13 Bruce MomjianMore include file adjustments.
2006-07-13 Bruce MomjianAllow include files to compile own their own.
2006-07-11 Bruce MomjianAlphabetically order reference to include files, "S...
2006-07-11 Bruce MomjianSort reference of include files, "A" - "F".
2006-06-27 Tom LaneConvert hash join code to use MinimalTuple format in...
2006-06-27 Tom LaneCreate infrastructure for 'MinimalTuple' representation...
2006-06-16 Tom LaneFix problems with cached tuple descriptors disappearing...
2006-06-09 Tom LaneRevert sampling patch for EXPLAIN ANALYZE; it turns...
2006-05-30 Tom LaneCode review for EXPLAIN patch. Fix some typos, make...
2006-05-30 Bruce MomjianMake EXPLAIN sampling smarter, to avoid excessive sampl...
2006-05-23 Tom LaneRemove CXT_printf/CXT1_printf macros. If anyone had...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-28 Tom LaneExtend the ExecInitNode API so that plan nodes receive...
2006-01-25 Tom LaneAllow row comparisons to be used as indexscan qualifica...
2006-01-12 Tom LaneRepair "Halloween problem" in EvalPlanQual: a tuple...
2005-12-03 Tom LaneTweak indexscan machinery to avoid taking an AccessShar...
2005-12-02 Tom LaneAdjust scan plan nodes to avoid getting an extra Access...
2005-11-25 Tom LaneTeach planner and executor to handle ScalarArrayOpExpr...
2005-11-23 Tom LaneGet rid of ExecAssignResultTypeFromOuterPlan() and...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-10-01 Tom Lane_SPI_execute_plan failed to return result tuple table...
2005-08-20 Tom LaneRepair problems with VACUUM destroying t_ctid chains...
2005-05-13 Tom LaneRevise nodeMergejoin in light of example provided by...
2005-05-02 Neil ConwayChange SPI functions to use a `long' when specifying...
2005-04-25 Tom LaneRemove support for OR'd indexscans internal to a single...
2005-04-19 Tom LaneCreate executor and planner-backend support for decoupl...
2005-04-16 Tom LaneCreate a new 'MultiExecProcNode' call API for plan...
2005-03-31 Tom LaneFirst phase of OUT-parameters project. We can now...
2005-03-29 Neil ConwayAdd SPI_getnspname(), including documentation.
2005-03-25 Tom LaneImprove EXPLAIN ANALYZE to show the time spent in each...
2005-03-20 Tom LaneOn Windows, use QueryPerformanceCounter instead of...
2005-03-16 Tom LaneRevise TupleTableSlot code to avoid unnecessary constru...
2005-03-14 Tom LaneAvoid O(N^2) overhead in repeated nocachegetattr calls...
2005-03-06 Tom LaneRevise hash join code so that we can increase the numbe...
2005-01-28 Tom LaneImprove planner's estimation of the space needed for...
2005-01-01 Bruce MomjianUpdate copyrights that were missed.
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-11-16 Tom LaneRethink plpgsql's way of handling SPI execution during...
2004-10-07 Tom LaneFix problems with SQL functions returning rowtypes...
2004-10-07 Bruce MomjianAdjust comments previously moved to column 1 by pgident.
2004-09-24 Neil ConwayExecProcAppend() wasn't called ExecAppend() because...
2004-09-22 Tom LaneArrange for hash join to skip scanning the outer relati...
2004-09-16 Tom LaneRestructure subtransaction handling to reduce resource...
2004-09-13 Tom LaneRedesign query-snapshot timing so that volatile functio...
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-07-31 Tom LaneBe more consistent about reporting SPI errors in the...
2004-07-01 Tom LaneNested transactions. There is still much left to do...
2004-05-10 Tom LanePromote row expressions to full-fledged citizens of...
2004-04-01 Tom LaneReplace TupleTableSlot convention for whole-row variabl...
2004-03-21 Tom LaneRevise syntax-error reporting behavior to give pleasant...
2004-03-17 Bruce MomjianDocument SPI_push() and SPI_pop().
2004-03-17 Tom LaneReplace the switching function ExecEvalExpr() with...
2004-03-05 Bruce MomjianAdd new SPI functions for use by PL/Java:
2004-03-02 Tom LaneJunkfilter logic to force a projection step during...
2004-01-22 Tom LaneFix oversight in optimization that avoids an unnecessar...
2004-01-14 Tom LaneFix permission-checking bug reported by Tim Burgess...
2003-12-18 Tom LaneEnsure set-returning functions in the targetlist of...
2003-12-02 Joe ConwayAdd a warning to AtEOXact_SPI() to catch cases where...
next