Skip to content

Commit f4cfb1d

Browse files
authored
Merge pull request #52 from future-architect/feature/dump
remove partition table when using dump command
2 parents e7484fb + 88bd015 commit f4cfb1d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

cli/dump.go

+6
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,12 @@ var query = `SELECT tab.relname AS table_name
3737
LEFT OUTER JOIN pg_description coldesc
3838
ON tab.relid = coldesc.objoid
3939
AND col.ordinal_position = coldesc.objsubid
40+
LEFT OUTER JOIN pg_class pc
41+
ON tab.relid = pc.oid
4042
WHERE exists(select 1 FROM tmp_exceltesting_dump_table_name WHERE tab.relname = name)
4143
AND tab.schemaname = current_schema()
4244
AND col.table_schema = current_schema()
45+
AND pc.relispartition = false
4346
ORDER BY tab.relname
4447
, col.ordinal_position
4548
;
@@ -62,9 +65,12 @@ var queryAll = `SELECT tab.relname AS table_name
6265
LEFT OUTER JOIN pg_description coldesc
6366
ON tab.relid = coldesc.objoid
6467
AND col.ordinal_position = coldesc.objsubid
68+
LEFT OUTER JOIN pg_class pc
69+
ON tab.relid = pc.oid
6570
WHERE
6671
tab.schemaname = current_schema()
6772
AND col.table_schema = current_schema()
73+
AND pc.relispartition = false
6874
ORDER BY tab.relname
6975
, col.ordinal_position
7076
;

0 commit comments

Comments
 (0)