summaryrefslogtreecommitdiff
path: root/src/backend/storage
Commit message (Expand)AuthorAgeFilesLines
* Introduce wal_level GUC to explicitly control if information needed forHeikki Linnakangas2010-04-281-2/+2
* Replace the KnownAssignedXids hash table with a sorted-array data structure,Tom Lane2010-04-281-320/+757
* Fix various instances of "the the".Robert Haas2010-04-231-2/+2
* Optimise btree delete processing when no active backends.Simon Riggs2010-04-222-5/+6
* Relax locking during GetCurrentVirtualXIDs(). Earlier improvementsSimon Riggs2010-04-212-63/+40
* Check RecoveryInProgress() while holding ProcArrayLock during snapshots.Simon Riggs2010-04-191-4/+9
* Tune GetSnapshotData() during Hot Standby by avoiding loopSimon Riggs2010-04-181-69/+70
* Change some debug ereports to elogs, as requested by translation team.Simon Riggs2010-04-062-17/+14
* Message tuningPeter Eisentraut2010-03-211-2/+2
* Clear error_context_stack and debug_query_string at the beginning of proc_exit,Tom Lane2010-03-201-1/+15
* Fix bug in KnownAssignedXidsMany(). I saw this when looking at theHeikki Linnakangas2010-03-111-2/+3
* Fix comment which was apparently copy-pasted from another function.Heikki Linnakangas2010-03-111-3/+5
* pgindent run for 9.0Bruce Momjian2010-02-2612-334/+343
* Adjust pg_fsync_writethrough so that it will set errno when failingTom Lane2010-02-221-1/+2
* Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane2010-02-162-2/+9
* Speed up CREATE DATABASE by deferring the fsyncs until after copyingGreg Stark2010-02-151-1/+17
* Improvements to ps message of startup process during Hot Standby.Simon Riggs2010-02-131-7/+12
* Re-enable max_standby_delay = -1 using deadlock detection on startupSimon Riggs2010-02-133-19/+62
* Fix typo bug in Hot Standby from recent refactoring. Bug introducedSimon Riggs2010-02-111-2/+2
* Fix up rickety handling of relation-truncation interlocks.Tom Lane2010-02-092-51/+68
* Allow free space map vacuuming to be interrupted.Tom Lane2010-02-091-1/+3
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-3/+2
* Assorted cleanups in preparation for using a map file to support alteringTom Lane2010-02-031-3/+26
* Fix assorted poorly-thought-out message strings: use %u not %d for printingTom Lane2010-02-021-15/+10
* Detect early deadlock in Hot Standby when Startup is already waiting. FirstSimon Riggs2010-01-312-3/+44
* Adjust GetLockConflicts() so that it uses TopMemoryContext whenSimon Riggs2010-01-291-15/+9
* Filter recovery conflicts based upon dboid from relfilenode of WALSimon Riggs2010-01-291-3/+3
* Use malloc() in GetLockConflicts() when called InHotStandby to avoid repeatedSimon Riggs2010-01-281-4/+18
* In HS, Startup process sets SIGALRM when waiting for buffer pin. IfSimon Riggs2010-01-236-50/+310
* Better internal documentation of locking for Hot Standby conflict resolution.Simon Riggs2010-01-211-4/+44
* Fix bogus initialization of KnownAssignedXids shared memory state ---Tom Lane2010-01-161-44/+34
* Message mentions msec when it should be seconds, so use s instead of ms.Simon Riggs2010-01-161-2/+2
* Teach standby conflict resolution to use SIGUSR1Simon Riggs2010-01-164-79/+60
* Introduce Streaming Replication.Heikki Linnakangas2010-01-153-5/+54
* First part of refactoring of code for ResolveRecoveryConflict. PurposesSimon Riggs2010-01-141-35/+121
* Please tablespace directories in their own subdirectory so pg_migratorBruce Momjian2010-01-121-5/+6
* During Hot Standby, fix drop database when sessions idle.Simon Riggs2010-01-101-1/+27
* Update copyright for the year 2010.Bruce Momjian2010-01-0233-66/+66
* Suppress compiler warning (pid_t isn't int everywhere)Tom Lane2009-12-311-9/+9
* Add missing 'static' tag.Tom Lane2009-12-311-2/+2
* Redefine Datum as uintptr_t, instead of unsigned long.Tom Lane2009-12-311-2/+2
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-197-32/+2130
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-154-71/+17
* Add large object access control.Itagaki Takahiro2009-12-111-38/+55
* Fix bug in temporary file management with subtransactions. A cursor openedHeikki Linnakangas2009-12-031-32/+35
* Change the autovacuum launcher to read pg_database directly, rather thanTom Lane2009-08-311-14/+24
* Allow backends to start up without use of the flat-file copy of pg_database.Tom Lane2009-08-121-11/+3
* Improve error messages in md.c. When a filesystem operation like open() orHeikki Linnakangas2009-08-052-67/+97
* Create a multiplexing structure for signals to Postgres child processes.Tom Lane2009-07-315-28/+293
* Fix a thinko introduced into CountActiveBackends by a recent patch:Tom Lane2009-07-291-2/+2