mirror of https://github.com/citusdata/citus.git
final?
parent
2b34b58338
commit
a6ce890e4a
|
@ -1258,3 +1258,9 @@ SELECT bool_and(hasmetadata) AND bool_and(metadatasynced) FROM pg_dist_node WHER
|
|||
t
|
||||
(1 row)
|
||||
|
||||
-- Grant all on public schema to public
|
||||
--
|
||||
-- That's the default on Postgres versions < 15 and we want to
|
||||
-- keep permissions compatible accross versions, in regression
|
||||
-- tests.
|
||||
GRANT ALL ON SCHEMA public TO PUBLIC;
|
||||
|
|
|
@ -530,3 +530,10 @@ RESET citus.metadata_sync_mode;
|
|||
|
||||
-- verify that at the end of this file, all primary nodes have metadata synced
|
||||
SELECT bool_and(hasmetadata) AND bool_and(metadatasynced) FROM pg_dist_node WHERE isactive = 't' and noderole = 'primary';
|
||||
|
||||
-- Grant all on public schema to public
|
||||
--
|
||||
-- That's the default on Postgres versions < 15 and we want to
|
||||
-- keep permissions compatible accross versions, in regression
|
||||
-- tests.
|
||||
GRANT ALL ON SCHEMA public TO PUBLIC;
|
||||
|
|
Loading…
Reference in New Issue