We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent0546906 commit88fba70Copy full SHA for 88fba70
contrib/pg_upgrade/info.c
@@ -331,13 +331,13 @@ get_rel_infos(migratorContext *ctx, const DbInfo *dbinfo,
331
" relname = 'pg_largeobject_loid_pn_index') )) "
332
"AND "
333
"(relkind = 'r' OR relkind = 't' OR "
334
-" relkind = 'i'%s)%s"
+" relkind = 'i'%s)"
335
"GROUP BY c.oid, n.nspname, c.relname, c.relfilenode,"
336
"c.reltoastrelid, t.spclocation, "
337
"n.nspname "
338
"ORDER BY n.nspname, c.relname;",
339
FirstNormalObjectId,
340
-/* see the comment at the top ofv8_3_create_sequence_script() */
+/* see the comment at the top ofold_8_3_create_sequence_script() */
341
(GET_MAJOR_VERSION(ctx->old.major_version) <=803) ?
342
"" :" OR relkind = 'S'");
343