mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Add 'volatile' to suppress 'variable might be clobbered by longjmp'
warning emitted by some versions of gcc.
This commit is contained in:
@ -55,7 +55,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.53 2007/06/30 04:08:05 alvherre Exp $
|
* $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.54 2007/07/01 02:20:59 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1776,7 +1776,7 @@ do_autovacuum(void)
|
|||||||
List *table_oids = NIL;
|
List *table_oids = NIL;
|
||||||
List *toast_oids = NIL;
|
List *toast_oids = NIL;
|
||||||
List *table_toast_list = NIL;
|
List *table_toast_list = NIL;
|
||||||
ListCell *cell;
|
ListCell * volatile cell;
|
||||||
PgStat_StatDBEntry *shared;
|
PgStat_StatDBEntry *shared;
|
||||||
PgStat_StatDBEntry *dbentry;
|
PgStat_StatDBEntry *dbentry;
|
||||||
BufferAccessStrategy bstrategy;
|
BufferAccessStrategy bstrategy;
|
||||||
|
Reference in New Issue
Block a user