summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2007-05-04Teach tuplesort.c about "top N" sorting, in which only the first N tuplesTom Lane
2007-05-03Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetchingTom Lane
2007-05-02Dept. of second thoughts: add comments cautioning against usingTom Lane
2007-05-02During WAL recovery, when reading a page that we intend to overwrite completelyTom Lane
2007-05-02Fix things so that when CREATE INDEX CONCURRENTLY sets pg_index.indisvalidTom Lane
2007-05-02Use the new TimestampDifferenceExceeds API instead of timestamp_cmp_internalAlvaro Herrera
2007-05-02Fix failure to check for INVALID worker entry in the new autovacuum code, whichAlvaro Herrera
2007-05-02Fix oversight in PG_RE_THROW processing: it's entirely possible that thereTom Lane
2007-05-01Fix a thinko in my patch of a couple months ago for bug #3116: it did theTom Lane
2007-04-30Change the timestamps recorded in transaction commit/abort xlog recordsTom Lane
2007-04-30Fix oversight in my patch of yesterday: forgot to ensure that stats wouldTom Lane
2007-04-30Implement rate-limiting logic on how often backends will attempt to sendTom Lane
2007-04-30Marginal performance hack: use a dedicated routine instead of copyObjectTom Lane
2007-04-30Marginal performance hack: avoid unnecessary work in expression_tree_mutator.Tom Lane
2007-04-30Marginal performance hack: remove the loop that used to be needed toTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-04-26Fix dynahash.c to suppress hash bucket splits while a hash_seq_search() scanTom Lane
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-24Set maximum semaphore count to 32767 instead of 1. FixesMagnus Hagander
2007-04-22Remove some of the most blatant brain-fade in the recent guc patchTom Lane
2007-04-21Some further performance tweaks for planning large inheritance trees thatTom Lane
2007-04-21Make configuration parameters fall back to their default values when theyPeter Eisentraut
2007-04-21Avoid useless work during set_plain_rel_pathlist() when the relationTom Lane
2007-04-21Tweak make_inh_translation_lists() to check the common case wherein parent andTom Lane
2007-04-21Improve the way in which CatalogCacheComputeHashValue combines multiple keyTom Lane
2007-04-21Adjust pgstat_initstats() to avoid repeated searches of the TabStat arraysTom Lane
2007-04-21Tweak set_rel_width() to avoid redundant executions of getrelid().Tom Lane
2007-04-20Add comment on why deadlock detection error messages only prints numbers.Bruce Momjian
2007-04-20Support explicit placement of the temporary-table schema within search_path.Tom Lane
2007-04-19Repair PANIC condition in hash indexes when a previous index extension attemptTom Lane
2007-04-19Silence compiler warnings, per Bruce.Alvaro Herrera
2007-04-18Enable configurable log of autovacuum actions. Initial patch from SimonAlvaro Herrera
2007-04-18Update docs/error message for CSV quote/escape --- must be ASCII.Bruce Momjian
2007-04-18Update error message for COPY with a multi-byte delimiter.Bruce Momjian
2007-04-17Fix condition for whether end_heap_rewrite must fsync, per Heikki.Tom Lane
2007-04-17Don't assume rd_smgr stays open across all of a rewriteheap operation;Tom Lane
2007-04-17Rewrite choose_bitmap_and() to make it more robust in the presence ofTom Lane
2007-04-16Tweak clean_encoding_name() API to avoid need to cast away const.Tom Lane
2007-04-16Add a multi-worker capability to autovacuum. This allows multiple workerAlvaro Herrera
2007-04-16Make plancache store cursor options so it can pass them to planner duringTom Lane
2007-04-16Support scrollable cursors (ie, 'direction' clause in FETCH) in plpgsql.Tom Lane
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-15Avoid running build_index_pathkeys() in situations where there cannotTom Lane
2007-04-15Make JOHAB client only encoding per discussions in pgsql-hackersTatsuo Ishii
2007-04-15Fix description how to create conversion function.Tatsuo Ishii
2007-04-12Fixes for RESET SESSION patch, per Alvaro. Fix a typo in the RESETNeil Conway
2007-04-12Rearrange mdsync() looping logic to avoid the problem that a sufficientlyTom Lane
2007-04-12Cancel pending fsync requests during WAL replay of DROP DATABASE, per bugTom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-11Code review for btree page split WAL reduction patch. Make it actually workTom Lane