summaryrefslogtreecommitdiff
path: root/src/backend/postmaster
AgeCommit message (Expand)Author
2006-02-01Add code comment about Linux stack randomization and shared memory.Bruce Momjian
2006-02-01Set progname early in the postmaster/postgres binary, rather than doingBruce Momjian
2006-01-20Fix thinko in autovacuum's test to skip temp tables: want to skip anyTom Lane
2006-01-18Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane
2006-01-06Fix Windows-only postmaster code to reject a connection request and continue,Tom Lane
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2006-01-05Remove BEOS port.Bruce Momjian
2006-01-04Rearrange backend startup sequence so that ShmemIndexLock can becomeTom Lane
2006-01-03Assume select() might modify struct timeout, so remove previousBruce Momjian
2006-01-03Use setitimer() for stats file write, rather than do a gettimeofday()Bruce Momjian
2006-01-02Change if (!(x || y)) construct with if (!x && !y), for clarity.Bruce Momjian
2005-12-31Rename variable to cmd_str.Bruce Momjian
2005-12-31Rename variable 'what' to 'stat_msg'.Bruce Momjian
2005-12-16Rethink prior patch to filter out dead backend entries from the pgstatsTom Lane
2005-12-08Fix bgwriter's failure to release buffer pins and open files after anTom Lane
2005-11-28Install a more future-proof fix for the snapshot-unset bug just found.Alvaro Herrera
2005-11-28Set a snapshot before running analyze on a single table, to avoid aAlvaro Herrera
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-05Repair an error introduced by log_line_prefix patch: it is not acceptableTom Lane
2005-11-03Fix one overlooked ocurrence of "None" in EXEC_BACKEND block.Alvaro Herrera
2005-11-03Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera
2005-10-22minor code cleanup - replace useless struct timezone argument toAndrew Dunstan
2005-10-20Postpone pg_timezone_initialize() until after creation of postmaster.pid,Tom Lane
2005-10-17Clean up libpq's pollution of application namespace by renaming theTom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-06Revise pgstats stuff to fix the problems with not counting accessesTom Lane
2005-09-24Suppress signed-vs-unsigned-char warnings.Tom Lane
2005-09-22Suppress port number for unix domain sockets in log connect/disconnectBruce Momjian
2005-09-12Ensure that any memory leaked during an error inside the bgwriter isTom Lane
2005-08-30Log send() failures when sending to statistics process (but only inTom Lane
2005-08-20Convert the arithmetic for shared memory size calculation from 'int'Tom Lane
2005-08-15Allow the pgstat views to show toast tables as well as regular tablesTom Lane
2005-08-12Reverse out changes to canonicalize_path(), per suggestion from Tom.Bruce Momjian
2005-08-12Modify canonicalize_path() so if we would return a trailing "..", throwBruce Momjian
2005-08-12Code & docs review for server instrumentation patch. File timestampsTom Lane
2005-08-12Add files to do read I/O on the cluster directory:Bruce Momjian
2005-08-11Autovacuum loose end mop-up. Provide autovacuum-specific vacuum costTom Lane
2005-08-09Make backends that are reading the pgstats file verify each backend PIDTom Lane
2005-08-08Cause ShutdownPostgres to do a normal transaction abort during backendTom Lane
2005-08-02Tweak BgBufferSync() so that a persistent write error on a dirty bufferTom Lane
2005-07-29Clean up a number of autovacuum loose ends. Make the stats collectorTom Lane
2005-07-24Fix some failures to initialize table entries induced by recent autovacuumTom Lane
2005-07-21Update DAYS_PER_MONTH comment.Bruce Momjian
2005-07-21Add time/date macros for code clarity:Bruce Momjian
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-04Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane
2005-06-30Issue fatal error if no TCP/IP sockets could be createdPeter Eisentraut
2005-06-30Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane
2005-06-29Clean up the rather historically encumbered interface to now() andTom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane