check pg_dist_object too in tests

pull/7439/head
Onur Tirtir 2024-02-21 12:34:42 +03:00
parent 425b1b7482
commit 31a476231f
2 changed files with 24 additions and 24 deletions

View File

@ -155,45 +155,45 @@ SELECT pg_sleep(0.1);
\c other_db1 \c other_db1
CREATE DATABASE other_db3; CREATE DATABASE other_db3;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db3'$$); SELECT * FROM public.check_database_on_all_nodes('other_db3') ORDER BY node_type;
result node_type | result
--------------------------------------------------------------------- ---------------------------------------------------------------------
other_db3 coordinator (local) | {"database_properties": {"datacl": null, "datname": "other_db3", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
other_db3 worker node (remote) | {"database_properties": {"datacl": null, "datname": "other_db3", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
other_db3 worker node (remote) | {"database_properties": {"datacl": null, "datname": "other_db3", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
(3 rows) (3 rows)
\c other_db1 \c other_db1
DROP DATABASE other_db3; DROP DATABASE other_db3;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db3'$$); SELECT * FROM public.check_database_on_all_nodes('other_db3') ORDER BY node_type;
result node_type | result
--------------------------------------------------------------------- ---------------------------------------------------------------------
coordinator (local) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
worker node (remote) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
worker node (remote) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
(3 rows) (3 rows)
\c worker_other_db - - :worker_1_port \c worker_other_db - - :worker_1_port
CREATE DATABASE other_db4; CREATE DATABASE other_db4;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db4'$$); SELECT * FROM public.check_database_on_all_nodes('other_db4') ORDER BY node_type;
result node_type | result
--------------------------------------------------------------------- ---------------------------------------------------------------------
other_db4 coordinator (remote) | {"database_properties": {"datacl": null, "datname": "other_db4", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
other_db4 worker node (local) | {"database_properties": {"datacl": null, "datname": "other_db4", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
other_db4 worker node (remote) | {"database_properties": {"datacl": null, "datname": "other_db4", "datctype": "C", "encoding": "UTF8", "datcollate": "C", "tablespace": "pg_default", "daticurules": null, "datallowconn": true, "datconnlimit": -1, "daticulocale": null, "datistemplate": false, "database_owner": "postgres", "datcollversion": null, "datlocprovider": "c"}, "pg_dist_object_record_for_db_exists": true, "stale_pg_dist_object_record_for_a_db_exists": false}
(3 rows) (3 rows)
\c worker_other_db \c worker_other_db
DROP DATABASE other_db4; DROP DATABASE other_db4;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db4'$$); SELECT * FROM public.check_database_on_all_nodes('other_db4') ORDER BY node_type;
result node_type | result
--------------------------------------------------------------------- ---------------------------------------------------------------------
coordinator (remote) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
worker node (local) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
worker node (remote) | {"database_properties": null, "pg_dist_object_record_for_db_exists": false, "stale_pg_dist_object_record_for_a_db_exists": false}
(3 rows) (3 rows)
DROP DATABASE worker_other_db; DROP DATABASE worker_other_db;

View File

@ -106,25 +106,25 @@ SELECT pg_sleep(0.1);
CREATE DATABASE other_db3; CREATE DATABASE other_db3;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db3'$$); SELECT * FROM public.check_database_on_all_nodes('other_db3') ORDER BY node_type;
\c other_db1 \c other_db1
DROP DATABASE other_db3; DROP DATABASE other_db3;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db3'$$); SELECT * FROM public.check_database_on_all_nodes('other_db3') ORDER BY node_type;
\c worker_other_db - - :worker_1_port \c worker_other_db - - :worker_1_port
CREATE DATABASE other_db4; CREATE DATABASE other_db4;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db4'$$); SELECT * FROM public.check_database_on_all_nodes('other_db4') ORDER BY node_type;
\c worker_other_db \c worker_other_db
DROP DATABASE other_db4; DROP DATABASE other_db4;
\c regression \c regression
SELECT result FROM run_command_on_all_nodes($$SELECT datname FROM pg_database WHERE datname = 'other_db4'$$); SELECT * FROM public.check_database_on_all_nodes('other_db4') ORDER BY node_type;
DROP DATABASE worker_other_db; DROP DATABASE worker_other_db;
\c - - - :master_port \c - - - :master_port