summaryrefslogtreecommitdiff
path: root/src/backend/postmaster
AgeCommit message (Expand)Author
2018-08-26Make syslogger more robust against failures in opening CSV log files.Tom Lane
2018-08-15Clean up assorted misuses of snprintf()'s result value.Tom Lane
2018-08-08Don't run atexit callbacks in quickdie signal handlers.Heikki Linnakangas
2018-08-07Fix incorrect initialization of BackendActivityBuffer.Tom Lane
2018-04-11Make local copy of client hostnames in backend status array.Heikki Linnakangas
2018-03-13Avoid holding AutovacuumScheduleLock while rechecking table statistics.Tom Lane
2018-02-26Empty search_path in Autovacuum and non-psql/pgbench clients.Noah Misch
2017-11-21Provide for forward compatibility with future minor protocol versions.Robert Haas
2017-07-10On Windows, retry process creation if we fail to reserve shared memory.Tom Lane
2017-06-26Don't lose walreceiver start requests due to race condition in postmaster.Tom Lane
2017-06-26Ignore old stats file timestamps when starting the stats collector.Tom Lane
2017-05-29Try to ensure that stats collector's receive buffer size is at least 100KB.Tom Lane
2017-05-15Fix new warnings from GCC 7Peter Eisentraut
2017-04-21Avoid depending on non-POSIX behavior of fcntl(2).Tom Lane
2017-02-06Fix typos in comments.Heikki Linnakangas
2017-01-20Avoid useless respawining the autovacuum launcher at high speed.Robert Haas
2016-10-27If the stats collector dies during Hot Standby, restart it.Robert Haas
2016-10-01Do ClosePostmasterPorts() earlier in SubPostmasterMain().Tom Lane
2016-09-27Include <sys/select.h> where neededAlvaro Herrera
2016-06-22Make "postgres -C guc" print "" not "(null)" for null-valued GUCs.Tom Lane
2016-06-16Avoid crash in "postgres -C guc" for a GUC with a null string value.Tom Lane
2016-06-06Don't reset changes_since_analyze after a selective-columns ANALYZE.Tom Lane
2016-05-31Avoid useless closely-spaced writes of statistics files.Tom Lane
2016-05-25Ensure that backends see up-to-date statistics for shared catalogs.Tom Lane
2016-05-10Fix autovacuum for shared relationsAlvaro Herrera
2016-04-18Fix --disable-spinlocks in 9.2 and 9.3 branches.Tom Lane
2016-03-09Avoid unlikely data-loss scenarios due to rename() without fsync.Andres Freund
2016-01-26Fix startup so that log prefix %h works for the log_connections message.Tom Lane
2015-10-13On Windows, ensure shared memory handle gets closed if not being used.Tom Lane
2015-10-06Perform an immediate shutdown if the postmaster.pid file is removed.Tom Lane
2015-09-09Remove files signaling a standby promotion request at postmaster startupFujii Masao
2015-08-02Fix incorrect order of lock file removal and failure to close() sockets.Tom Lane
2015-07-09Fix postmaster's handling of a startup-process crash.Tom Lane
2015-06-20Fix thinko in comment (launcher -> worker)Alvaro Herrera
2015-06-19Clamp autovacuum launcher sleep time to 5 minutesAlvaro Herrera
2015-05-18Prevent a double free by not reentering be_tls_close().Noah Misch
2015-05-08Teach autovacuum about multixact member wraparound.Robert Haas
2015-04-08Fix autovacuum launcher shutdown sequenceAlvaro Herrera
2015-02-02Be more careful to not lose sync in the FE/BE protocol.Heikki Linnakangas
2015-01-19Adjust "pgstat wait timeout" message to be a translatable LOG message.Tom Lane
2015-01-14Make logging_collector=on work with non-windows EXEC_BACKEND again.Andres Freund
2015-01-07On Darwin, detect and report a multithreaded postmaster.Noah Misch
2014-12-11Fix assorted confusion between Oid and int32.Tom Lane
2014-10-03Don't balance vacuum cost delay when per-table settings are in effectAlvaro Herrera
2014-10-01Block signals while computing the sleep time in postmaster's main loop.Andres Freund
2014-07-30Avoid wholesale autovacuuming when autovacuum is nominally off.Tom Lane
2014-07-30Fix mishandling of background worker PGPROCs in EXEC_BACKEND builds.Robert Haas
2014-05-15Fix unportable setvbuf() usage in initdb.Tom Lane
2014-05-06Remove tabs after spaces in C commentsBruce Momjian
2014-04-16Use AF_UNSPEC not PF_UNSPEC in getaddrinfo calls.Tom Lane