]> granicus.if.org Git - postgresql/commit
Integrate autovacuum functionality into the backend. There's still a
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 14 Jul 2005 05:13:45 +0000 (05:13 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 14 Jul 2005 05:13:45 +0000 (05:13 +0000)
commit29094193f526bf90671d71b59a2e007aad1fcae5
tree51e632c843ab9c7eedbd0b01f4de5b27c202443e
parentf2bf2d2dc5cef3f5b9cf50493490fa9931f982b2
Integrate autovacuum functionality into the backend.  There's still a
few loose ends to be dealt with, but it seems to work.  Alvaro Herrera,
based on the contrib code by Matthew O'Connor.
25 files changed:
doc/src/sgml/catalogs.sgml
doc/src/sgml/runtime.sgml
src/backend/catalog/Makefile
src/backend/commands/analyze.c
src/backend/commands/vacuum.c
src/backend/commands/vacuumlazy.c
src/backend/postmaster/Makefile
src/backend/postmaster/autovacuum.c [new file with mode: 0644]
src/backend/postmaster/pgstat.c
src/backend/postmaster/postmaster.c
src/backend/tcop/postgres.c
src/backend/tcop/utility.c
src/backend/utils/init/miscinit.c
src/backend/utils/init/postinit.c
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample
src/include/catalog/catversion.h
src/include/catalog/indexing.h
src/include/catalog/pg_autovacuum.h [new file with mode: 0644]
src/include/commands/vacuum.h
src/include/pgstat.h
src/include/postmaster/autovacuum.h [new file with mode: 0644]
src/include/tcop/tcopprot.h
src/include/utils/guc_tables.h
src/test/regress/expected/sanity_check.out