diff options
author | Andres Freund <andres@anarazel.de> | 2019-03-18 13:10:29 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2019-03-18 13:10:29 -0700 |
commit | 7571ce6f11f24594274fd4956bd4d1114eebd485 (patch) | |
tree | 523505f8ff99d879f988aa8742cf4c1e5bcce01a | |
parent | 1459e84cb2e57649627753ad1279428d35590df6 (diff) |
Remove leftover reference to oid column.
I (Andres) missed this in 578b229718e8.
Author: John Naylor
Discussion: https://postgr.es/m/CACPNZCtd+ckUgibRFs9KewK4Yr5rj3Oipefquupw+XJZebFhrA@mail.gmail.com
-rw-r--r-- | contrib/vacuumlo/vacuumlo.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/contrib/vacuumlo/vacuumlo.c b/contrib/vacuumlo/vacuumlo.c index e2baaef4575..db7a1c47fa1 100644 --- a/contrib/vacuumlo/vacuumlo.c +++ b/contrib/vacuumlo/vacuumlo.c @@ -198,9 +198,6 @@ vacuumlo(const char *database, const struct _param *param) * table formed above is ignored, and pg_largeobject will be too. If * either of these were scanned, obviously we'd end up with nothing to * delete... - * - * NOTE: the system oid column is ignored, as it has attnum < 1. This - * shouldn't matter for correctness, but it saves time. */ buf[0] = '\0'; strcat(buf, "SELECT s.nspname, c.relname, a.attname "); |