@@ -6786,7 +6786,6 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
6786
6786
"pg_catalog.pg_get_indexdef(i.indexrelid) AS indexdef, "
6787
6787
"i.indnkeyatts AS indnkeyatts, "
6788
6788
"i.indnatts AS indnatts, "
6789
- "t.relnatts AS indnkeys, "
6790
6789
"i.indkey, i.indisclustered, "
6791
6790
"i.indisreplident, t.relpages, "
6792
6791
"c.contype, c.conname, "
@@ -6824,7 +6823,6 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
6824
6823
"pg_catalog.pg_get_indexdef(i.indexrelid) AS indexdef, "
6825
6824
"i.indnatts AS indnkeyatts, "
6826
6825
"i.indnatts AS indnatts, "
6827
- "t.relnatts AS indnkeys, "
6828
6826
"i.indkey, i.indisclustered, "
6829
6827
"i.indisreplident, t.relpages, "
6830
6828
"c.contype, c.conname, "
@@ -6858,7 +6856,6 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
6858
6856
"pg_catalog.pg_get_indexdef(i.indexrelid) AS indexdef, "
6859
6857
"i.indnatts AS indnkeyatts, "
6860
6858
"i.indnatts AS indnatts, "
6861
- "t.relnatts AS indnkeys, "
6862
6859
"i.indkey, i.indisclustered, "
6863
6860
"false AS indisreplident, t.relpages, "
6864
6861
"c.contype, c.conname, "
@@ -6888,7 +6885,6 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
6888
6885
"pg_catalog.pg_get_indexdef(i.indexrelid) AS indexdef, "
6889
6886
"i.indnatts AS indnkeyatts, "
6890
6887
"i.indnatts AS indnatts, "
6891
- "t.relnatts AS indnkeys, "
6892
6888
"i.indkey, i.indisclustered, "
6893
6889
"false AS indisreplident, t.relpages, "
6894
6890
"c.contype, c.conname, "
@@ -6919,7 +6915,8 @@ getIndexes(Archive *fout, TableInfo tblinfo[], int numTables)
6919
6915
"t.relname AS indexname, "
6920
6916
"0 AS parentidx, "
6921
6917
"pg_catalog.pg_get_indexdef(i.indexrelid) AS indexdef, "
6922
- "t.relnatts AS indnkeys, "
6918
+ "t.relnatts AS indnkeyatts, "
6919
+ "t.relnatts AS indnatts, "
6923
6920
"i.indkey, i.indisclustered, "
6924
6921
"false AS indisreplident, t.relpages, "
6925
6922
"c.contype, c.conname, "
0 commit comments