diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c index eb748f18409..f455495a005 100644 --- a/src/backend/postmaster/autovacuum.c +++ b/src/backend/postmaster/autovacuum.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.10 2006/01/18 20:35:05 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.11 2006/01/20 15:16:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -635,7 +635,7 @@ do_autovacuum(PgStat_StatDBEntry *dbentry) * Skip temp tables (i.e. those in temp namespaces). We cannot safely * process other backends' temp tables. */ - if (isTempNamespace(classForm->relnamespace)) + if (isAnyTempNamespace(classForm->relnamespace)) continue; relid = HeapTupleGetOid(tuple);