|
10 | 10 | *
|
11 | 11 | *
|
12 | 12 | * IDENTIFICATION
|
13 |
| - * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.10 2006/01/18 20:35:05 tgl Exp $ |
| 13 | + * $PostgreSQL: pgsql/src/backend/postmaster/autovacuum.c,v 1.11 2006/01/20 15:16:56 tgl Exp $ |
14 | 14 | *
|
15 | 15 | *-------------------------------------------------------------------------
|
16 | 16 | */
|
@@ -635,7 +635,7 @@ do_autovacuum(PgStat_StatDBEntry *dbentry)
|
635 | 635 | * Skip temp tables (i.e. those in temp namespaces). We cannot safely
|
636 | 636 | * process other backends' temp tables.
|
637 | 637 | */
|
638 |
| -if (isTempNamespace(classForm->relnamespace)) |
| 638 | +if (isAnyTempNamespace(classForm->relnamespace)) |
639 | 639 | continue;
|
640 | 640 |
|
641 | 641 | relid=HeapTupleGetOid(tuple);
|
|