mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
Cost based vacuum delay feature.
Jan
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.388 2004/02/03 17:34:03 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.389 2004/02/06 19:36:18 wieck Exp $
|
||||
*
|
||||
* NOTES
|
||||
* this is the "main" module of the postgres backend and
|
||||
@ -2707,6 +2707,11 @@ PostgresMain(int argc, char *argv[], const char *username)
|
||||
InError = false;
|
||||
xact_started = false;
|
||||
|
||||
/*
|
||||
* Clear flag that causes accounting for cost based vacuum.
|
||||
*/
|
||||
VacuumCostActive = false;
|
||||
|
||||
/*
|
||||
* If we were handling an extended-query-protocol message,
|
||||
* initiate skip till next Sync. This also causes us not to issue
|
||||
|
Reference in New Issue
Block a user