]> granicus.if.org Git - postgresql/history - src/backend/executor
Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.
[postgresql] / src / backend / executor /
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...
2006-11-17 Peter EisentrautSmall message equalization fix
2006-11-08 Neil ConwayRemove a 15-year old comment questioning behavior that...
2006-11-06 Tom LaneRepair bug #2694 concerning an ARRAY[] construct whose...
2006-10-12 Tom LaneFix mishandling of after-trigger state when a SQL funct...
2006-10-06 Peter EisentrautMessage style improvements
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-09-28 Tom LaneFix IS NULL and IS NOT NULL tests on row-valued express...
2006-09-07 Tom LaneClean up logging for extended-query-protocol operations...
2006-09-06 Tom LaneChange processing of extended-Query mode so that an...
2006-09-03 Bruce MomjianRevert FETCH/MOVE int64 patch. Was using incorrect...
2006-09-02 Bruce MomjianChange FETCH/MOVE to use int8.
2006-08-29 Bruce MomjianNow bind displays prepare as detail, and execute displa...
2006-08-27 Tom LaneAdd new return codes SPI_OK_INSERT_RETURNING etc to...
2006-08-14 Tom LaneFix oversight in initial implementation of PORTAL_ONE_R...
2006-08-14 Tom LaneWhen executing a list of queries derived from rule...
2006-08-12 Tom LaneTweak SPI_cursor_open to allow INSERT/UPDATE/DELETE...
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-08-08 Bruce MomjianFor protocol-level prepare/bind/execute:
2006-08-04 Tom LaneFix domain_in() bug exhibited by Darcy Buskermolen...
2006-08-02 Tom LaneArrange for ValuesScan to keep per-sublist expression...
2006-08-02 Joe ConwayAdd support for multi-row VALUES clauses as part of...
2006-07-31 Tom LaneChange the relation_open protocol so that we obtain...
2006-07-31 Tom LaneChange the bootstrap sequence so that toast tables...
2006-07-27 Tom LaneAggregate functions now support multiple input argument...
2006-07-26 Tom LaneCode review for bigint-LIMIT patch. Fix missed planner...
2006-07-26 Bruce MomjianChange LIMIT/OFFSET to use int8
2006-07-14 Bruce MomjianRemove 576 references of include files that were not...
next