mirror of https://github.com/citusdata/citus.git
Fix multi_extension.out
parent
140e8db3c2
commit
dc9c5f6ddf
|
@ -73,13 +73,14 @@ DROP FUNCTION pg_catalog.worker_split_copy(
|
|||
splitCopyInfos pg_catalog.split_copy_info[]);
|
||||
DROP TYPE pg_catalog.split_copy_info;
|
||||
|
||||
DROP FUNCTION pg_catalog.worker_copy_table_to_node(
|
||||
source_table regclass,
|
||||
target_node_id integer);
|
||||
|
||||
DROP FUNCTION pg_catalog.worker_split_shard_replication_setup(
|
||||
splitShardInfo pg_catalog.split_shard_info[]);
|
||||
DROP TYPE pg_catalog.split_shard_info;
|
||||
DROP TYPE pg_catalog.replication_slot_info;
|
||||
DROP FUNCTION pg_catalog.worker_copy_table_to_node(
|
||||
source_table regclass,
|
||||
target_node_id integer);
|
||||
|
||||
DROP FUNCTION pg_catalog.get_all_active_transactions(OUT datid oid, OUT process_id int, OUT initiator_node_identifier int4,
|
||||
OUT worker_query BOOL, OUT transaction_number int8, OUT transaction_stamp timestamptz,
|
||||
|
|
|
@ -1063,8 +1063,6 @@ SELECT * FROM multi_extension.print_extension_changes();
|
|||
-- Test downgrade to 11.0-3 from 11.1-1
|
||||
ALTER EXTENSION citus UPDATE TO '11.1-1';
|
||||
ALTER EXTENSION citus UPDATE TO '11.0-3';
|
||||
ERROR: "options" is not a view
|
||||
HINT: Use DROP TABLE to remove a table.
|
||||
-- Should be empty result since upgrade+downgrade should be a no-op
|
||||
SELECT * FROM multi_extension.print_extension_changes();
|
||||
previous_object | current_object
|
||||
|
@ -1101,12 +1099,9 @@ SELECT * FROM multi_extension.print_extension_changes();
|
|||
| function citus_split_shard_by_split_points(bigint,text[],integer[],citus.shard_transfer_mode) void
|
||||
| function worker_copy_table_to_node(regclass,integer) void
|
||||
| function worker_split_copy(bigint,split_copy_info[]) void
|
||||
| function worker_split_shard_replication_setup(split_shard_info[]) SETOF replication_slot_info
|
||||
| type replication_slot_info
|
||||
| type split_copy_info
|
||||
| type split_shard_info
|
||||
| view citus_locks
|
||||
(30 rows)
|
||||
(27 rows)
|
||||
|
||||
DROP TABLE multi_extension.prev_objects, multi_extension.extension_diff;
|
||||
-- show running version
|
||||
|
@ -1461,4 +1456,4 @@ DROP TABLE version_mismatch_table;
|
|||
DROP SCHEMA multi_extension;
|
||||
ERROR: cannot drop schema multi_extension because other objects depend on it
|
||||
DETAIL: function multi_extension.print_extension_changes() depends on schema multi_extension
|
||||
HINT: Use DROP ... CASCADE to drop the dependent objects too.
|
||||
HINT: Use DROP ... CASCADE to drop the dependent objects too.
|
||||
|
|
Loading…
Reference in New Issue