/[rserv]/misc/slave.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /misc/slave.sql

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.1.1 by dpavlin, Wed Dec 20 17:22:35 2000 UTC revision 1.2 by dpavlin, Fri Aug 15 23:01:36 2003 UTC
# Line 7  drop table _RSERV_SLAVE_TABLES_; Line 7  drop table _RSERV_SLAVE_TABLES_;
7    
8  create table _RSERV_SLAVE_TABLES_  create table _RSERV_SLAVE_TABLES_
9  (  (
10          tname  name,    -- table name          tname   name not null,  -- table name
11          cname  name,    -- column name          cname   name not null,  -- column name
12          reloid  oid,    -- table oid          reloid  oid primary key, -- table oid
13          key             int4    -- key attnum          key     int4 not null   -- key attnum
14  );  );
15    
16  drop table _RSERV_SLAVE_SYNC_;  drop table _RSERV_SLAVE_SYNC_;
17    
18  create table _RSERV_SLAVE_SYNC_  create table _RSERV_SLAVE_SYNC_
19  (  (
20          syncid          int4,          syncid          int4 not null,
21          synctime        timestamp          synctime        timestamp
22  );  );

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.26