|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.18 2002/12/03 07:12:18 tgl Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.19 2002/12/10 01:57:16 momjian Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
@@ -284,6 +284,7 @@ vacuumlo(char *database, struct _param * param) |
284 | 284 | strcat(buf," AND t.typname in ('oid', 'lo') "); |
285 | 285 | strcat(buf," AND c.relkind = 'r'"); |
286 | 286 | strcat(buf," AND c.relname NOT LIKE 'pg_%'"); |
| 287 | +strcat(buf," AND c.relname != 'vacuum_l'"); |
287 | 288 | res=PQexec(conn,buf); |
288 | 289 | if (PQresultStatus(res)!=PGRES_TUPLES_OK) |
289 | 290 | { |
|