summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2016-10-27Fix possible pg_basebackup failure on standby with "include WAL".Robert Haas
2016-10-24Preserve commit timestamps across clean restartAlvaro Herrera
2016-10-21Fix comment formatting.Robert Haas
2016-10-20Rename "pg_xlog" directory to "pg_wal".Robert Haas
2016-10-19Fix WAL-logging of FSM and VM truncation.Heikki Linnakangas
2016-10-12Remove unnecessary int2vector-specific hash function and equality operator.Tom Lane
2016-10-11Drop server support for FE/BE protocol version 1.0.Tom Lane
2016-10-04Extend framework from commit 53be0b1ad to report latch waits.Robert Haas
2016-09-26Replace the built-in GIN array opclasses with a single polymorphic opclass.Tom Lane
2016-09-23Remove useless code.Tom Lane
2016-09-21Delay updating control file to "in production"Peter Eisentraut
2016-09-20Fix outdated comments, GIST search queue is not an RBTree anymore.Heikki Linnakangas
2016-09-13Have heapam.h include lockdefs.h rather than lock.h.Robert Haas
2016-09-09Rewrite PageIndexDeleteNoCompact into a form that only deletes 1 tuple.Tom Lane
2016-09-09Invent PageIndexTupleOverwrite, and teach BRIN and GiST to use it.Tom Lane
2016-09-09Fix locking a tuple updated by an aborted (sub)transactionAlvaro Herrera
2016-09-09Fix corruption of 2PC recovery with subxactsSimon Riggs
2016-09-08Fix minor memory leak in Standby startupSimon Riggs
2016-09-06Add location field to DefElemPeter Eisentraut
2016-09-03Fix corrupt GIN_SEGMENT_ADDITEMS WAL records on big-endian hardware.Tom Lane
2016-09-03New recovery target recovery_target_lsnSimon Riggs
2016-09-02Support multiple iterators in the Red-Black Tree implementation.Heikki Linnakangas
2016-08-31Prevent starting a standalone backend with standby_mode on.Tom Lane
2016-08-29Split hash.h → hash_xlog.hAlvaro Herrera
2016-08-29Fix typos in comments.Fujii Masao
2016-08-29Fix pg_xlogdump so that it handles cross-page XLP_FIRST_IS_CONTRECORD record.Fujii Masao
2016-08-27Add macros to make AllocSetContextCreate() calls simpler and safer.Tom Lane
2016-08-26Fix potential memory leakage from HandleParallelMessages().Tom Lane
2016-08-26Fix logic for adding "parallel worker" context line to worker errors.Tom Lane
2016-08-25Fix small query-lifespan memory leak in bulk updates.Tom Lane
2016-08-24Suppress compiler warnings in non-cassert builds.Tom Lane
2016-08-23Improve SP-GiST opclass API to better support unlabeled nodes.Tom Lane
2016-08-18Fix deletion of speculatively inserted TOAST on conflictAndres Freund
2016-08-16Fix typosPeter Eisentraut
2016-08-15Final pgindent + perltidy run for 9.6.Tom Lane
2016-08-13Add SQL-accessible functions for inspecting index AM properties.Tom Lane
2016-08-06In B-tree page deletion, clean up properly after page deletion failure.Tom Lane
2016-08-05Change InitToastSnapshot to a macro.Robert Haas
2016-08-05Fix hard to hit race condition in heapam's tuple locking code.Andres Freund
2016-08-03Prevent "snapshot too old" from trying to return pruned TOAST tuples.Robert Haas
2016-08-02Block interrupts during HandleParallelMessages().Tom Lane
2016-08-01Minor cleanup for access/transam/parallel.c.Tom Lane
2016-07-28Message style improvementsPeter Eisentraut
2016-07-21Remove unused structure member.Robert Haas
2016-07-18Clear all-frozen visibilitymap status when locking tuples.Andres Freund
2016-07-16Add regression test case exercising the sorting path for hash index build.Tom Lane
2016-07-16Fix torn-page, unlogged xid and further risks from heap_update().Andres Freund
2016-07-15Make HEAP_LOCK/HEAP2_LOCK_UPDATED replay reset HEAP_XMAX_INVALID.Andres Freund
2016-07-15Avoid serializability errors when locking a tuple with a committed updateAlvaro Herrera
2016-07-14Fix GiST index build for NaN values in geometric types.Tom Lane