CREATE EXTENSION postgres_fdw;
CREATE SERVER clone_server
FOREIGN DATA WRAPPER postgres_fdw
OPTIONS (host '127.0.0.1', port '5433', dbname 'recovery_clone');
CREATE USER MAPPING FOR current_user
SERVER clone_server
OPTIONS (user 'yugabyte', password 'yugabyte');