Fri Jul 30 20:50:51 PDT 2004
- Previous message: [Slony1-commit] By cbbrowne: Remove an extra "public." namespace reference because the
- Next message: [Slony1-commit] By wieck: Don't check for sync status on copy set if copying from the
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Protect against adding the same table/sequnce more than once to any set(s)
Modified Files:
--------------
slony1-engine/src/backend:
slony1_base.sql (r1.13 -> r1.14)
-------------- next part --------------
Index: slony1_base.sql
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/backend/slony1_base.sql,v
retrieving revision 1.13
retrieving revision 1.14
diff -Lsrc/backend/slony1_base.sql -Lsrc/backend/slony1_base.sql -u -w -r1.13 -r1.14
--- src/backend/slony1_base.sql
+++ src/backend/slony1_base.sql
@@ -73,7 +73,7 @@
-- ----------------------------------------------------------------------
create table @NAMESPACE at .sl_table (
tab_id int4,
- tab_reloid oid,
+ tab_reloid oid UNIQUE NOT NULL,
tab_set int4,
tab_idxname name NOT NULL,
tab_altered boolean NOT NULL,
@@ -108,7 +108,7 @@
-- ----------------------------------------------------------------------
create table @NAMESPACE at .sl_sequence (
seq_id int4,
- seq_reloid oid,
+ seq_reloid oid UNIQUE NOT NULL,
seq_set int4,
seq_comment text,
- Previous message: [Slony1-commit] By cbbrowne: Remove an extra "public." namespace reference because the
- Next message: [Slony1-commit] By wieck: Don't check for sync status on copy set if copying from the
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list