]> granicus.if.org Git - postgresql/history - src/backend/commands
Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.
[postgresql] / src / backend / commands /
2007-06-07 Tom LaneRework temp_tablespaces patch so that temp tablespaces...
2007-06-03 Peter EisentrautClarify some error messages about duplicate things.
2007-06-03 Tom LaneCreate a GUC parameter temp_tablespaces that allows...
2007-06-02 Peter EisentrautMinimal message corrections found by spell checker.
2007-06-01 Tom LaneMake CREATE/DROP/RENAME DATABASE wait a little bit...
2007-05-31 Peter EisentrautMake some messages more consistent
2007-05-30 Tom LaneMake large sequential scans and VACUUMs work in a limit...
2007-05-25 Tom LaneCreate hooks to let a loadable plugin monitor (or even...
2007-05-19 Alvaro HerreraFix dumb compile error in the last patch.
2007-05-18 Alvaro HerreraHave CLUSTER advance the table's relfrozenxid. The...
2007-05-17 Alvaro HerreraMove the tuple freezing point in CLUSTER to a point...
2007-05-16 Alvaro HerreraHave TRUNCATE advance the affected table's relfrozenxid...
2007-05-14 Tom LaneGet rid of the pg_shdepend entry for a TOAST table...
2007-05-12 Tom LaneFix the problem that creating a user-defined type named...
2007-05-11 Tom LaneFix my oversight in enabling domains-of-domains: ALTER...
2007-05-11 Tom LaneSupport arrays of composite types, including the rowtyp...
2007-05-04 Tom LaneAdd a line to the EXPLAIN ANALYZE output for a Sort...
2007-05-02 Tom LaneFix things so that when CREATE INDEX CONCURRENTLY sets...
2007-04-30 Tom LaneImplement rate-limiting logic on how often backends...
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-26 Neil ConwayRename the newly-added commands for discarding session...
2007-04-19 Alvaro HerreraSilence compiler warnings, per Bruce.
2007-04-18 Alvaro HerreraEnable configurable log of autovacuum actions. Initial...
2007-04-18 Bruce MomjianUpdate docs/error message for CSV quote/escape ---...
2007-04-18 Bruce MomjianUpdate error message for COPY with a multi-byte delimiter.
2007-04-16 Alvaro HerreraAdd a multi-worker capability to autovacuum. This...
2007-04-16 Tom LaneMake plancache store cursor options so it can pass...
2007-04-16 Tom LaneExpose more cursor-related functionality in SPI: specif...
2007-04-12 Tom LaneCancel pending fsync requests during WAL replay of...
2007-04-12 Neil ConwayRESET SESSION, plus related new DDL commands. Patch...
2007-04-08 Tom LaneMake CLUSTER MVCC-safe. Heikki Linnakangas
2007-04-06 Tom LaneSupport varlena fields with single-byte headers and...
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-26 Tom LaneAllow non-superuser database owners to create procedura...
2007-03-23 Tom LaneFix plancache so that any required replanning is done...
2007-03-22 Tom LaneAllow DROP TABLESPACE to succeed (with a warning) if...
2007-03-19 Jan WieckChanges pg_trigger and extend pg_rewrite in order to...
2007-03-14 Tom LaneFix a longstanding bug in VACUUM FULL's handling of...
2007-03-13 Tom LaneFirst phase of plan-invalidation project: create a...
2007-03-08 Tom LaneFix vac_update_relstats to ensure it always sends a...
2007-03-06 Bruce MomjianRevert temp_tablespaces because of coding problems...
2007-03-03 Neil ConwayAdd resetStringInfo(), which clears the content of...
2007-02-23 Tom LaneNow that plans have flat rangetable lists, it's a lot...
2007-02-22 Tom LaneChange Agg and Group nodes so that Vars contained in...
2007-02-22 Tom LaneTurn the rangetable used by the executor into a flat...
2007-02-21 Bruce MomjianUpdate new optional VACUUM FULL hint for translations...
2007-02-21 Bruce MomjianMove increase FSM warning to after lazy_truncate_heap...
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 new RI operator selection code to do the right...
2007-02-15 Alvaro HerreraRestructure autovacuum in two processes: a dummy proces...
2007-02-14 Tom LaneFix up foreign-key mechanism so that there is a sound...
2007-02-09 Tom LaneCall pgstat_drop_database during DROP DATABASE, so...
2007-02-06 Tom LaneFix an error in the original coding of holdable cursors...
2007-02-05 Tom LaneRename MaxTupleSize to MaxHeapTupleSize to clarify...
2007-02-04 Bruce MomjianChange vacuum lazy "compacting" warning message to:
2007-02-02 Tom LaneRepair failure to check that a table is still compatibl...
2007-02-01 Bruce MomjianWording cleanup for error messages. Also change can...
2007-01-28 Tom LaneRemove some unnecessary conversion work in build_regtyp...
2007-01-25 Bruce MomjianAdd GUC temp_tablespaces to provide a default location...
2007-01-25 Bruce MomjianProperly detoast access to bytea field pg_trigger.tgarg...
2007-01-25 Bruce MomjianPrevent WAL logging when COPY is done in the same trans...
2007-01-23 Tom LaneAdd CREATE/ALTER/DROP OPERATOR FAMILY commands, also...
2007-01-22 Tom LaneAdd COST and ROWS options to CREATE/ALTER FUNCTION...
2007-01-20 Tom LaneSimplify pg_am representation of ordering-capable acces...
2007-01-20 Peter EisentrautRemove remains of old depend target.
2007-01-17 Tom LaneExtend yesterday's patch so that the bgwriter is also...
2007-01-16 Alvaro HerreraArrange for autovacuum to be killed when another operat...
2007-01-09 Tom LaneSupport ORDER BY ... NULLS FIRST/LAST, and add ASC...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2007-01-03 Tom LaneClean up smgr.c/md.c APIs as per discussion a couple...
2006-12-30 Tom LaneSupport type modifiers for user-defined types, and...
2006-12-23 Tom LaneRestructure operator classes to allow improved handling...
2006-12-18 Tom LaneSet pg_am.amstrategies to zero for index AMs that don...
2006-11-23 Tom LaneSeveral changes to reduce the probability of running...
2006-11-12 Neil ConwayFix some typos in comments.
2006-11-05 Tom LaneFix recently-understood problems with handling of XID...
2006-10-19 Tom LaneFix a couple of places that were assuming debug_query_s...
2006-10-18 Tom LaneAdd some code to CREATE DATABASE to check for pre-exist...
2006-10-13 Tom LaneCode and docs review for ALTER TABLE INHERIT/NO INHERIT...
2006-10-11 Tom LaneCode review for LIKE INCLUDING CONSTRAINTS patch -...
2006-10-06 Peter EisentrautMessage style improvements
2006-10-05 Tom LaneMake use of qsort_arg in several places that were forme...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-10-03 Bruce MomjianMake some sentences consistent with similar ones.
2006-09-27 Tom LaneReplace strncpy with strlcpy in selected places that...
2006-09-25 Tom LaneFix notice message from DROP FUNCTION IF EXISTS, and...
2006-09-21 Tom LaneFix free space map to correctly track the total amount...
2006-09-17 Tom LaneChange ANALYZE to take ShareUpdateExclusiveLock not...
2006-09-17 Tom LaneMarginal cleanup in arrangements for ensuring StrategyH...
2006-09-13 Tom LaneCode review for patch to avoid second scan when vacuumi...
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-05 Tom LaneGet rid of the separate RULE privilege for tables:...
2006-09-04 Bruce MomjianTrivial patch to double vacuum speed on tables with...
2006-09-04 Tom LaneDisallow TRUNCATE when there are any pending after...
2006-09-03 Bruce MomjianRevert FETCH/MOVE int64 patch. Was using incorrect...
2006-09-02 Bruce MomjianChange FETCH/MOVE to use int8.
next