summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2009-10-02Make sure that GIN fast-insert and regular code paths enforce the sameTom Lane
2009-09-18Fix incorrect arguments for gist_box_penalty call. The bug could be observedTeodor Sigaev
2009-09-15Fix two distinct errors in creation of GIN_INSERT_LISTPAGE xlog records.Tom Lane
2009-09-13Don't error out if recycling or removing an old WAL segment fails at the endHeikki Linnakangas
2009-09-10On Windows, when a file is deleted and another process still has an openHeikki Linnakangas
2009-09-01Force VACUUM to recalculate oldestXmin even when we haven't changed ourTom Lane
2009-09-01Actually, we need to bump the format identifier on twophase filesTom Lane
2009-09-01Remove flatfiles.c, which is now obsolete.Alvaro Herrera
2009-08-31Track the current XID wrap limit (or more accurately, the oldest unfrozenTom Lane
2009-08-27Fix handling of autovacuum reloptions.Alvaro Herrera
2009-08-27In the checkpoint written at the end of archive recovery, the WAL page headerHeikki Linnakangas
2009-08-24Fix a violation of WAL coding rules in the recent patch to include anTom Lane
2009-08-17Department of marginal improvements: teach tupconvert.c to avoid doing aTom Lane
2009-08-12Allow backends to start up without use of the flat-file copy of pg_database.Tom Lane
2009-08-08Document that LocalSetXLogInsertAllowed can be re-executed.Tom Lane
2009-08-07rm_cleanup functions need to be allowed to write WAL entries. This oversightTom Lane
2009-08-06Improve plpgsql's ability to cope with rowtypes containing dropped columns,Tom Lane
2009-08-02Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane
2009-08-01Department of second thoughts: let's show the exact key during unique indexTom Lane
2009-08-01Improve unique-constraint-violation error messages to include the exactTom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-07-22Tweak TOAST code so that columns marked with MAIN storage strategy areTom Lane
2009-07-16Make backend header files C++ safePeter Eisentraut
2009-06-26Cleanup and code review for the patch that made bgwriter active duringTom Lane
2009-06-25Fix some serious bugs in archive recovery, now that bgwriter is activeHeikki Linnakangas
2009-06-25The code to unlink dropped relations in FinishPreparedTransaction() wasHeikki Linnakangas
2009-06-24Correct grammar in picksplit debug messagesPeter Eisentraut
2009-06-18Fix a few errors in comments. Patch by Fujii Masao, plus the one inHeikki Linnakangas
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-06-10Improve capitalization and punctuation in recently added GiST message.Peter Eisentraut
2009-06-10Keep rs_startblock the same during heap_rescan, so that a rescan of a SeqScanTom Lane
2009-06-06Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane
2009-06-06Fix a serious bug introduced into GIN in 8.4: now that MergeItemPointers()Tom Lane
2009-06-02Only recycle normal files in pg_xlog as WAL segments. pg_standby createsHeikki Linnakangas
2009-05-28When archiving is enabled, rotate the last WAL segment at shutdown so thatHeikki Linnakangas
2009-05-24Use more-portable coding for the check on handing out the last availableTom Lane
2009-05-19Fix bug #4814 (wrong subscript in consistent-function call), and add someTom Lane
2009-05-15Fix all the server-side SIGQUIT handlers (grumble ... why so many identicalTom Lane
2009-05-14Include recovery_end_command in recovery.conf.sample.Tom Lane
2009-05-14Improve a couple of comments.Tom Lane
2009-05-14Add recovery_end_command option to recovery.conf. recovery_end_commandHeikki Linnakangas
2009-05-13Rewrite xml.c's memory management (yet again). Give up on the idea ofTom Lane
2009-05-12Fix LOCK TABLE to eliminate the race condition that could make it give weirdTom Lane
2009-05-07Request XLOG switch before writing checkpoint in pg_start_backup(). OtherwiseHeikki Linnakangas
2009-05-05Insert CHECK_FOR_INTERRUPTS() calls into btree and hash index scans at theTom Lane
2009-05-05Update comment for _bt_relandgetbuf.Tom Lane
2009-04-23Change the default value of max_prepared_transactions to zero, and addTom Lane
2009-04-22After archive recovery, mark the last WAL segment from the parent timelineHeikki Linnakangas
2009-04-07Add an optional parameter to pg_start_backup() that specifies whether to doTom Lane
2009-04-06Fix 'all at one page bug' in picksplit method of R-tree emulation. Add defenseTeodor Sigaev