mirror of https://github.com/citusdata/citus.git
Use citus_finish_citus_upgrade() in the tests
We already have tests relying on citus_finalize_upgrade_to_citus11(). Now, adjust those to rely on citus_finish_citus_upgrade() and always call citus_finish_citus_upgrade().pull/5995/head
parent
36c4ec6d53
commit
af22a30b48
|
@ -1,5 +1,6 @@
|
|||
# this schedule is to be run only on coordinators
|
||||
|
||||
test: upgrade_citus_finish_citus_upgrade
|
||||
test: upgrade_basic_after
|
||||
test: upgrade_partition_constraints_after
|
||||
test: upgrade_pg_dist_object_test_after
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
-- Citus upgrades are finished by calling a procedure
|
||||
-- this is a transactional procedure, so rollback should be fine
|
||||
BEGIN;
|
||||
CALL citus_finish_citus_upgrade();
|
||||
NOTICE: Preparing all the existing partitioned table indexes
|
||||
NOTICE: Preparing to sync the metadata to all nodes
|
||||
ROLLBACK;
|
||||
-- do the actual job
|
||||
CALL citus_finish_citus_upgrade();
|
||||
NOTICE: Preparing all the existing partitioned table indexes
|
||||
NOTICE: Preparing to sync the metadata to all nodes
|
||||
-- show that the upgrade is successfull
|
||||
SELECT metadata->>'last_upgrade_version' = extversion
|
||||
FROM pg_dist_node_metadata, pg_extension WHERE extname = 'citus';
|
||||
?column?
|
||||
---------------------------------------------------------------------
|
||||
t
|
||||
(1 row)
|
||||
|
||||
-- idempotent, should be called multiple times
|
||||
-- still, do not NOTICE the version as it changes per release
|
||||
SET client_min_messages TO WARNING;
|
||||
CALL citus_finish_citus_upgrade();
|
|
@ -1,14 +1,4 @@
|
|||
SET search_path = post_11_upgrade;
|
||||
-- make sure that we always (re)sync the metadata
|
||||
UPDATE pg_dist_node_metadata SET metadata=jsonb_set(metadata, '{partitioned_citus_table_exists_pre_11}', to_jsonb('true'::bool), true);
|
||||
SELECT citus_finalize_upgrade_to_citus11(enforce_version_check:=false);
|
||||
NOTICE: Preparing all the existing partitioned table indexes
|
||||
NOTICE: Preparing to sync the metadata to all nodes
|
||||
citus_finalize_upgrade_to_citus11
|
||||
---------------------------------------------------------------------
|
||||
t
|
||||
(1 row)
|
||||
|
||||
-- tables, views and their dependencies become objects with Citus 11+
|
||||
SELECT pg_identify_object_as_address(classid, objid, objsubid) FROM pg_catalog.pg_dist_object WHERE objid IN ('post_11_upgrade'::regnamespace, 'post_11_upgrade.part_table'::regclass, 'post_11_upgrade.sensors'::regclass, 'post_11_upgrade.func_in_transaction_def'::regproc, 'post_11_upgrade.partial_index_test_config'::regconfig, 'post_11_upgrade.my_type'::regtype, 'post_11_upgrade.employees'::regclass, 'post_11_upgrade.view_for_upgrade_test'::regclass, 'post_11_upgrade.my_type_for_view'::regtype, 'post_11_upgrade.view_for_upgrade_test_my_type'::regclass, 'post_11_upgrade.non_dist_table_for_view'::regclass, 'post_11_upgrade.non_dist_upgrade_test_view'::regclass, 'post_11_upgrade.non_dist_upgrade_test_view_local_join'::regclass, 'post_11_upgrade.non_dist_upgrade_multiple_dist_view'::regclass, 'post_11_upgrade.non_dist_upgrade_ref_view'::regclass, 'post_11_upgrade.non_dist_upgrade_ref_view_2'::regclass, 'post_11_upgrade.reporting_line'::regclass, 'post_11_upgrade.v_test_1'::regclass, 'post_11_upgrade.v_test_2'::regclass, 'post_11_upgrade.owned_by_extension_table'::regclass, 'post_11_upgrade.materialized_view'::regclass, 'post_11_upgrade.owned_by_extension_view'::regclass, 'post_11_upgrade.local_type'::regtype, 'post_11_upgrade.non_dist_dist_table_for_view'::regclass, 'post_11_upgrade.depends_on_nothing_1'::regclass, 'post_11_upgrade.depends_on_nothing_2'::regclass, 'post_11_upgrade.depends_on_pg'::regclass, 'post_11_upgrade.depends_on_citus'::regclass, 'post_11_upgrade.depends_on_seq'::regclass, 'post_11_upgrade.depends_on_seq_and_no_support'::regclass) ORDER BY 1;
|
||||
pg_identify_object_as_address
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
-- Citus upgrades are finished by calling a procedure
|
||||
|
||||
-- this is a transactional procedure, so rollback should be fine
|
||||
BEGIN;
|
||||
CALL citus_finish_citus_upgrade();
|
||||
ROLLBACK;
|
||||
|
||||
-- do the actual job
|
||||
CALL citus_finish_citus_upgrade();
|
||||
|
||||
-- show that the upgrade is successfull
|
||||
|
||||
SELECT metadata->>'last_upgrade_version' = extversion
|
||||
FROM pg_dist_node_metadata, pg_extension WHERE extname = 'citus';
|
||||
|
||||
-- idempotent, should be called multiple times
|
||||
-- still, do not NOTICE the version as it changes per release
|
||||
SET client_min_messages TO WARNING;
|
||||
CALL citus_finish_citus_upgrade();
|
|
@ -1,9 +1,5 @@
|
|||
SET search_path = post_11_upgrade;
|
||||
|
||||
-- make sure that we always (re)sync the metadata
|
||||
UPDATE pg_dist_node_metadata SET metadata=jsonb_set(metadata, '{partitioned_citus_table_exists_pre_11}', to_jsonb('true'::bool), true);
|
||||
SELECT citus_finalize_upgrade_to_citus11(enforce_version_check:=false);
|
||||
|
||||
-- tables, views and their dependencies become objects with Citus 11+
|
||||
SELECT pg_identify_object_as_address(classid, objid, objsubid) FROM pg_catalog.pg_dist_object WHERE objid IN ('post_11_upgrade'::regnamespace, 'post_11_upgrade.part_table'::regclass, 'post_11_upgrade.sensors'::regclass, 'post_11_upgrade.func_in_transaction_def'::regproc, 'post_11_upgrade.partial_index_test_config'::regconfig, 'post_11_upgrade.my_type'::regtype, 'post_11_upgrade.employees'::regclass, 'post_11_upgrade.view_for_upgrade_test'::regclass, 'post_11_upgrade.my_type_for_view'::regtype, 'post_11_upgrade.view_for_upgrade_test_my_type'::regclass, 'post_11_upgrade.non_dist_table_for_view'::regclass, 'post_11_upgrade.non_dist_upgrade_test_view'::regclass, 'post_11_upgrade.non_dist_upgrade_test_view_local_join'::regclass, 'post_11_upgrade.non_dist_upgrade_multiple_dist_view'::regclass, 'post_11_upgrade.non_dist_upgrade_ref_view'::regclass, 'post_11_upgrade.non_dist_upgrade_ref_view_2'::regclass, 'post_11_upgrade.reporting_line'::regclass, 'post_11_upgrade.v_test_1'::regclass, 'post_11_upgrade.v_test_2'::regclass, 'post_11_upgrade.owned_by_extension_table'::regclass, 'post_11_upgrade.materialized_view'::regclass, 'post_11_upgrade.owned_by_extension_view'::regclass, 'post_11_upgrade.local_type'::regtype, 'post_11_upgrade.non_dist_dist_table_for_view'::regclass, 'post_11_upgrade.depends_on_nothing_1'::regclass, 'post_11_upgrade.depends_on_nothing_2'::regclass, 'post_11_upgrade.depends_on_pg'::regclass, 'post_11_upgrade.depends_on_citus'::regclass, 'post_11_upgrade.depends_on_seq'::regclass, 'post_11_upgrade.depends_on_seq_and_no_support'::regclass) ORDER BY 1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue