Test whether flaky split_shard

pull/7338/head
naisila 2023-11-13 11:03:43 +03:00
parent d3401b26a3
commit 114902453c
No known key found for this signature in database
GPG Key ID: A824BA9862D73E6D
2 changed files with 28 additions and 0 deletions

View File

@ -847,3 +847,27 @@ DROP OWNED BY myuser;
DROP USER myuser;
DROP OWNED BY admin_user;
DROP USER admin_user;
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_replication_slots$$);
result
---------------------------------------------------------------------
0
0
0
(3 rows)
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_publication$$);
result
---------------------------------------------------------------------
0
0
0
(3 rows)
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_subscription$$);
result
---------------------------------------------------------------------
0
0
0
(3 rows)

View File

@ -557,3 +557,7 @@ DROP OWNED BY myuser;
DROP USER myuser;
DROP OWNED BY admin_user;
DROP USER admin_user;
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_replication_slots$$);
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_publication$$);
SELECT result FROM run_command_on_all_nodes($$SELECT count(*) FROM pg_subscription$$);