Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b842726 commit bc66259Copy full SHA for bc66259
contrib/vacuumlo/vacuumlo.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.18 2002/12/03 07:12:18 tgl Exp $
+ * $Header: /cvsroot/pgsql/contrib/vacuumlo/vacuumlo.c,v 1.19 2002/12/10 01:57:16 momjian Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -284,6 +284,7 @@ vacuumlo(char *database, struct _param * param)
284
strcat(buf, " AND t.typname in ('oid', 'lo') ");
285
strcat(buf, " AND c.relkind = 'r'");
286
strcat(buf, " AND c.relname NOT LIKE 'pg_%'");
287
+ strcat(buf, " AND c.relname != 'vacuum_l'");
288
res = PQexec(conn, buf);
289
if (PQresultStatus(res) != PGRES_TUPLES_OK)
290
{
0 commit comments