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 parent9522ec3 commit2d75934Copy full SHA for 2d75934
contrib/pg_upgrade/info.c
@@ -332,8 +332,8 @@ get_rel_infos(ClusterInfo *cluster, DbInfo *dbinfo)
332
* pg_dump only dumps valid indexes; testing indisready is necessary in
333
* 9.2, and harmless in earlier/later versions.
334
*/
335
-"i.indisvalid IS DISTINCT FROM false AND "
336
-"i.indisready IS DISTINCT FROM false AND "
+"i.indisvalid IS DISTINCT FROM false AND "
+"i.indisready IS DISTINCT FROM false AND "
337
/* exclude possible orphaned temp tables */
338
" ((n.nspname !~ '^pg_temp_' AND "
339
" n.nspname !~ '^pg_toast_temp_' AND "
@@ -347,7 +347,7 @@ get_rel_infos(ClusterInfo *cluster, DbInfo *dbinfo)
347
* We have to gather the TOAST tables in later steps because we
348
* can't schema-qualify TOAST tables.
349
350
-/* get TOAST heap */
+/* get TOAST heap */
351
"toast_heap (reloid) AS ( "
352
"SELECT reltoastrelid "
353
"FROM regular_heap JOIN pg_catalog.pg_class c "