]> granicus.if.org Git - postgresql/history - src/backend/executor
Document and enforce that the usable range of setseed() arguments is
[postgresql] / src / backend / executor /
2008-03-10 Tom LaneThrow an error for negative LIMIT or OFFSET values...
2008-02-29 Neil ConwayFix several memory leaks when rescanning SRFs. Arrange...
2008-02-19 Peter EisentrautRefactor backend makefiles to remove lots of duplicate...
2008-02-12 Tom LaneFix SPI_cursor_open() and SPI_is_cursor_plan() to push...
2008-02-07 Tom LaneFix CREATE TABLE ... LIKE ... INCLUDING INDEXES to...
2008-01-11 Tom LaneThe original implementation of polymorphic aggregates...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-11-30 Tom LaneAvoid incrementing the CommandCounter when CommandCount...
2007-11-30 Tom LaneRepair bug that allowed RevalidateCachedPlan to attempt...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-10-25 Tom LaneTweak new error messages to match the actual syntax...
2007-10-24 Tom LaneDisallow scrolling of FOR UPDATE/FOR SHARE cursors...
2007-10-24 Tom LaneFix UPDATE/DELETE WHERE CURRENT OF to support repeated...
2007-09-20 Tom LaneHOT updates. When we update a tuple without changing...
2007-09-12 Tom LaneRedefine the lp_flags field of item pointers as having...
2007-09-07 Tom LaneDon't take ProcArrayLock while exiting a transaction...
2007-09-06 Tom LaneMake eval_const_expressions() preserve typmod when...
2007-08-31 Tom LaneExtend whole-row Var evaluation to cope with the case...
2007-08-26 Tom LaneMake ARRAY(SELECT ...) return an empty array, rather...
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-08-08 Neil ConwayFix a gradual memory leak in ExecReScanAgg(). Because...
2007-07-31 Tom LaneIf we're gonna use ExecRelationIsTargetRelation here...
2007-07-27 Neil ConwaySlight refactor for ExecOpenScanRelation(): we can use
2007-06-17 Tom LaneRevert an ill-considered portion of my patch of 12...
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-09 Tom LaneTeach heapam code to know the difference between a...
2007-06-07 Tom LaneRework temp_tablespaces patch so that temp tablespaces...
2007-06-06 Tom LaneFix up text concatenation so that it accepts all the...
2007-06-05 Tom LaneDowngrade implicit casts to text to be assignment-only...
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-05-31 Tom LaneThe shortcut exit that I recently added to ExecInitInde...
2007-05-27 Tom LaneFix up pgstats counting of live and dead tuples to...
2007-05-25 Tom LaneCreate hooks to let a loadable plugin monitor (or even...
2007-05-21 Tom LaneTeach tuplestore.c to throw away data before the "mark...
2007-05-17 Tom LaneFix parameter recalculation for Limit nodes: during...
2007-05-04 Tom LaneTeach tuplesort.c about "top N" sorting, in which only...
2007-04-27 Tom LaneModify processing of DECLARE CURSOR and EXPLAIN so...
2007-04-26 Tom LaneFix dynahash.c to suppress hash bucket splits while...
2007-04-16 Tom LaneMake plancache store cursor options so it can pass...
2007-04-16 Tom LaneSupport scrollable cursors (ie, 'direction' clause...
2007-04-16 Tom LaneExpose more cursor-related functionality in SPI: specif...
2007-04-06 Tom LaneMake 'col IS NULL' clauses be indexable conditions.
2007-04-06 Tom LaneSupport varlena fields with single-byte headers and...
2007-04-02 Tom LaneFix check_sql_fn_retval to allow the case where a SQL...
2007-04-02 Tom LaneSupport enum data types. Along the way, use macros...
2007-03-29 Tom LaneTeach CLUSTER to skip writing WAL if not needed (ie...
2007-03-27 Tom LaneFix array coercion expressions to ensure that the corre...
2007-03-25 Tom LaneMake _SPI_execute_plan pass the query source string...
2007-03-25 Tom LaneRemove the prohibition on executing cursor commands...
2007-03-25 Tom LaneClean up the representation of special snapshots by...
2007-03-17 Tom LaneSPI_cursor_open failed to enforce that only read-only...
2007-03-15 Tom LaneMake use of plancache module for SPI plans. In particu...
2007-03-13 Tom LaneFirst phase of plan-invalidation project: create a...
2007-03-06 Bruce MomjianRevert temp_tablespaces because of coding problems...
2007-02-27 Tom LaneReplace direct assignments to VARATT_SIZEP(x) with...
2007-02-27 Tom LaneGet rid of the separate EState for subplans, and just...
2007-02-22 Tom LaneChange Agg and Group nodes so that Vars contained in...
2007-02-22 Tom LaneFix bug I introduced in recent patch to make hash joins...
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-19 Tom LanePut function expressions and values lists into Function...
2007-02-16 Tom LaneFix another problem in 8.2 changes that allowed "one...
2007-02-15 Tom LaneRepair oversight in 8.2 change that improved the handli...
2007-02-06 Tom LaneRemove typmod checking from the recent security-related...
2007-02-06 Tom LaneAdd support for cross-type hashing in hashed subplans...
2007-02-03 Peter EisentrautImplement XMLSERIALIZE for real. Analogously, make...
2007-02-02 Tom LaneRepair failure to check that a table is still compatibl...
2007-02-02 Tom LaneRepair insufficiently careful type checking for SQL...
2007-02-01 Bruce MomjianWording cleanup for error messages. Also change can...
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-25 Peter EisentrautVarious fixes in the logic of XML functions:
2007-01-25 Bruce MomjianAdd GUC temp_tablespaces to provide a default location...
2007-01-25 Bruce MomjianPrevent WAL logging when COPY is done in the same trans...
2007-01-24 Tom LaneRelax an Assert() that has been found to be too strict...
2007-01-20 Peter EisentrautRemove remains of old depend target.
2007-01-20 Peter EisentrautFix xmlconcat by properly merging the XML declarations...
2007-01-14 Peter EisentrautAdd support for xmlval IS DOCUMENT expression.
2007-01-12 Peter EisentrautUse XML output escaping also in XMLFOREST.
2007-01-11 Tom LaneTeach nodeMergejoin how to handle DESC and/or NULLS...
2007-01-10 Peter EisentrautUse libxml's xmlwriter API for producing XML elements...
2007-01-10 Tom LaneChange the planner-to-executor API so that the planner...
2007-01-09 Bruce MomjianEnable another five tuple status bits by using the...
2007-01-09 Tom LaneSupport ORDER BY ... NULLS FIRST/LAST, and add ASC...
2007-01-07 Peter EisentrautSome fine-tuning of xmlpi in corner cases:
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-26 Tom LaneRepair bug #2839: the various ExecReScan functions...
2006-12-26 Tom LaneRepair bug #2836: SPI_execute_plan returned zero if...
2006-12-24 Tom LaneCode review for XML patch. Instill a bit of sanity...
2006-12-23 Tom LaneRestructure operator classes to allow improved handling...
2006-12-21 Peter EisentrautInitial SQL/XML support: xml data type and initial...
2006-12-08 Tom LaneAvoid double free of _SPI_current->tuptable. AtEOSubXa...
2006-12-04 Tom LaneRefactor ExecGetJunkAttribute to avoid searching for...
2006-12-03 Tom LaneFix LIMIT/OFFSET for null limit values. This worked...
2006-11-21 Tom LanePrevent intratransaction memory leak when a subtransact...
next