mirror of https://github.com/citusdata/citus.git
Drop backup table after upgrade
The prepare for upgrade script creates the `'public.pg_dist_rebalance_strategy` table which is not dropped when the upgrade is finished. This may block future upgrades.pull/4226/head
parent
f904ce1726
commit
6fffee7616
|
@ -48,6 +48,7 @@ BEGIN
|
|||
DROP TABLE public.pg_dist_poolinfo;
|
||||
DROP TABLE public.pg_dist_shard;
|
||||
DROP TABLE public.pg_dist_transaction;
|
||||
DROP TABLE public.pg_dist_rebalance_strategy;
|
||||
|
||||
--
|
||||
-- reset sequences
|
||||
|
|
Loading…
Reference in New Issue