You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/test/tap/groups/pgsql-repl/conf/postgres/00_init.sql

10 lines
289 B

CREATE USER repluser WITH replication encrypted password 'replpass';
SELECT pg_create_physical_replication_slot('replication_slot');
CREATE USER proxymon WITH encrypted password 'proxymon';
GRANT pg_monitor TO proxymon;
-- For testing 'pgsql-monitor_dbname'
CREATE DATABASE proxymondb;