File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,12 @@ var query = `SELECT tab.relname AS table_name
37
37
LEFT OUTER JOIN pg_description coldesc
38
38
ON tab.relid = coldesc.objoid
39
39
AND col.ordinal_position = coldesc.objsubid
40
+ LEFT OUTER JOIN pg_class pc
41
+ ON tab.relid = pc.oid
40
42
WHERE exists(select 1 FROM tmp_exceltesting_dump_table_name WHERE tab.relname = name)
41
43
AND tab.schemaname = current_schema()
42
44
AND col.table_schema = current_schema()
45
+ AND pc.relispartition = false
43
46
ORDER BY tab.relname
44
47
, col.ordinal_position
45
48
;
@@ -62,9 +65,12 @@ var queryAll = `SELECT tab.relname AS table_name
62
65
LEFT OUTER JOIN pg_description coldesc
63
66
ON tab.relid = coldesc.objoid
64
67
AND col.ordinal_position = coldesc.objsubid
68
+ LEFT OUTER JOIN pg_class pc
69
+ ON tab.relid = pc.oid
65
70
WHERE
66
71
tab.schemaname = current_schema()
67
72
AND col.table_schema = current_schema()
73
+ AND pc.relispartition = false
68
74
ORDER BY tab.relname
69
75
, col.ordinal_position
70
76
;
You can’t perform that action at this time.
0 commit comments