summaryrefslogtreecommitdiff
path: root/src/backend/postmaster
AgeCommit message (Expand)Author
2008-09-15Parse pg_hba.conf in postmaster, instead of once in each backend forMagnus Hagander
2008-08-25Unconditionally write the statsfile when SIGHUP is received, to minimizeMagnus Hagander
2008-08-25Make stats_temp_directory PGC_SIGHUP, and document how it may cause a temporaryMagnus Hagander
2008-08-15Make the temporary directory for pgstat files configurable by the GUCMagnus Hagander
2008-08-13Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera
2008-08-11Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas
2008-08-05Move pgstat.tmp into a temporary directory under $PGDATA named pg_stat_tmp.Magnus Hagander
2008-08-01Add a few more DTrace probes to the backend.Alvaro Herrera
2008-07-23Ratchet up patch to improve autovacuum wraparound messages.Alvaro Herrera
2008-07-21Publish more openly the fact that autovacuum is working for wraparoundAlvaro Herrera
2008-07-17Avoid crashing when a table is deleted while we're on the process of checkingAlvaro Herrera
2008-07-01Teach autovacuum how to determine whether a temp table belongs to a crashedTom Lane
2008-06-30Turn PGBE_ACTIVITY_SIZE into a GUC variable, track_activity_query_size.Heikki Linnakangas
2008-06-26Fix 'pg_ctl restart' to preserve command-line arguments.Bruce Momjian
2008-06-26Use SYSTEMQUOTE as concatentation to strings, rather than %s printfBruce Momjian
2008-06-19Rewrite the sinval messaging mechanism to reduce contention and avoidTom Lane
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera
2008-06-06Change xlog.h to xlogdefs.h in bufpage.h, and fix fallout.Alvaro Herrera
2008-06-05Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera
2008-05-15Add support for tracking call counts and elapsed runtime for user-definedTom Lane
2008-05-12Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera
2008-05-04Add pg_conf_load_time() function to report when the Postgres configurationTom Lane
2008-04-26Code review for recent patch to terminate online backup during shutdown:Tom Lane
2008-04-23Prevent shutdown in normal mode if online backup is running, andMagnus Hagander
2008-04-03Teach ANALYZE to distinguish dead and in-doubt tuples, which it formerlyTom Lane
2008-03-31Use error message wordings for permissions checks on .pgpass and SSL privateTom Lane
2008-03-26Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera
2008-03-24Adjust the recent patch for reporting of deadlocked queries so that we reportTom Lane
2008-03-21Report the current queries of all backends involved in a deadlockTom Lane
2008-03-19Remove another useless snapshot creation.Alvaro Herrera
2008-03-14Fix inappropriately-timed memory context switch in autovacuum_do_vac_analyze.Tom Lane
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-03-09Remove postmaster.c's check that NBuffers is at least twice MaxBackends.Tom Lane
2008-02-20Rename miscadmin.h's PG_VERSIONSTR macro to PG_BACKEND_VERSIONSTR toTom Lane
2008-02-20Change error message to be able to differentiate the two cases. Per suggestionAlvaro Herrera
2008-02-19Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut
2008-02-17Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane
2008-01-25Fix two different copy-and-paste-os in CSV log rotation logic; one that led toTom Lane
2008-01-14Mark autovacuum entries in pg_stat_activity so that they can be easilyAlvaro Herrera
2008-01-11Restructure the shutdown procedure for the archiver process to allow it toTom Lane
2008-01-01Update copyrights in source tree to 2008.Bruce Momjian
2007-12-18Make archiver process report its progress in PS display. PerTom Lane
2007-12-13Clarify log messagesPeter Eisentraut
2007-12-12Clean up unportable attempt to use #if inside a macro call, alsoTom Lane
2007-12-12Provide a more accurate, detailed log message when the archive command fails.Peter Eisentraut
2007-11-24Reduce routine successful-archiving message from LOG to DEBUG1 grade,Tom Lane
2007-11-15Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian
2007-11-15pgindent run for 8.3.Bruce Momjian
2007-11-15Message improvementsPeter Eisentraut
2007-11-14Fix incorrect calculation of elapsed_xlogs. Itagaki TakahiroTom Lane