1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-08 06:02:22 +03:00

rserv replication toolkit from Vadim Mikheev.

This commit is contained in:
Thomas G. Lockhart
2000-12-20 17:22:35 +00:00
parent 96edf0c185
commit 54f2b601ef
19 changed files with 2644 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
-- erServer
-- Slave server setup for erServer demonstration implementation
-- (c) 2000 Vadim Mikheev, PostgreSQL Inc.
--
drop table _RSERV_SLAVE_TABLES_;
create table _RSERV_SLAVE_TABLES_
(
tname name, -- table name
cname name, -- column name
reloid oid, -- table oid
key int4 -- key attnum
);
drop table _RSERV_SLAVE_SYNC_;
create table _RSERV_SLAVE_SYNC_
(
syncid int4,
synctime timestamp
);