Index: contrib/vacuumlo/vacuumlo.c =================================================================== RCS file: /projects/cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v retrieving revision 1.30 diff -c -r1.30 vacuumlo.c *** contrib/vacuumlo/vacuumlo.c 15 Oct 2005 02:49:08 -0000 1.30 --- contrib/vacuumlo/vacuumlo.c 23 Feb 2006 16:17:11 -0000 *************** *** 167,173 **** strcat(buf, " AND c.relnamespace = s.oid "); strcat(buf, " AND t.typname in ('oid', 'lo') "); strcat(buf, " AND c.relkind = 'r'"); ! strcat(buf, " AND s.nspname NOT LIKE 'pg\\\\_%'"); res = PQexec(conn, buf); if (PQresultStatus(res) != PGRES_TUPLES_OK) { --- 167,173 ---- strcat(buf, " AND c.relnamespace = s.oid "); strcat(buf, " AND t.typname in ('oid', 'lo') "); strcat(buf, " AND c.relkind = 'r'"); ! strcat(buf, " AND s.nspname NOT LIKE E'pg\\\\_%'"); res = PQexec(conn, buf); if (PQresultStatus(res) != PGRES_TUPLES_OK) {