mirror of https://github.com/citusdata/citus.git
Add upgrade tests with non-transactional metadata sync.
parent
c323f49e83
commit
1fdcd5b389
|
@ -12,6 +12,13 @@ BEGIN;
|
||||||
CALL citus_finish_citus_upgrade();
|
CALL citus_finish_citus_upgrade();
|
||||||
ROLLBACK;
|
ROLLBACK;
|
||||||
|
|
||||||
|
-- we should be able to upgrade with nontransactional metadata sync as well
|
||||||
|
SET citus.metadata_sync_mode TO 'nontransactional';
|
||||||
|
BEGIN;
|
||||||
|
CALL citus_finish_citus_upgrade();
|
||||||
|
ROLLBACK;
|
||||||
|
RESET citus.metadata_sync_mode;
|
||||||
|
|
||||||
-- do the actual job
|
-- do the actual job
|
||||||
CALL citus_finish_citus_upgrade();
|
CALL citus_finish_citus_upgrade();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue