Wed Feb 16 21:02:06 PST 2005
- Previous message: [Slony1-commit] By cbbrowne: Fix SGML tagging error, add link so that Slonik reference
- Next message: [Slony1-commit] By smsimms: Add a missing WHERE clause that causes MOVE SET to fail
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
Fix cluster init, default log shipping to false, with cbb's blessing
Modified Files:
--------------
slony1-engine/src/backend:
slony1_funcs.sql (r1.52 -> r1.53)
-------------- next part --------------
Index: slony1_funcs.sql
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/backend/slony1_funcs.sql,v
retrieving revision 1.52
retrieving revision 1.53
diff -Lsrc/backend/slony1_funcs.sql -Lsrc/backend/slony1_funcs.sql -u -w -r1.52 -r1.53
--- src/backend/slony1_funcs.sql
+++ src/backend/slony1_funcs.sql
@@ -362,7 +362,6 @@
Initializes the new node, no_id';
-
-- ----------------------------------------------------------------------
-- FUNCTION storeNode (no_id, no_comment, no_spool)
--
@@ -1230,11 +1229,11 @@
-- ----
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_pa_server) then
- perform @NAMESPACE at .storeNode_int (p_pa_server, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_pa_server, ''<event pending>'', ''f'');
end if;
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_pa_client) then
- perform @NAMESPACE at .storeNode_int (p_pa_client, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_pa_client, ''<event pending>'', ''f'');
end if;
insert into @NAMESPACE at .sl_path
(pa_server, pa_client, pa_conninfo, pa_connretry) values
@@ -1421,15 +1420,15 @@
-- ----
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_li_origin) then
- perform @NAMESPACE at .storeNode_int (p_li_origin, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_li_origin, ''<event pending>'', ''f'');
end if;
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_li_provider) then
- perform @NAMESPACE at .storeNode_int (p_li_provider, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_li_provider, ''<event pending>'', ''f'');
end if;
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_li_receiver) then
- perform @NAMESPACE at .storeNode_int (p_li_receiver, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_li_receiver, ''<event pending>'', ''f'');
end if;
insert into @NAMESPACE at .sl_listen
@@ -1576,7 +1575,7 @@
else
if not exists (select 1 from @NAMESPACE at .sl_node
where no_id = p_set_origin) then
- perform @NAMESPACE at .storeNode_int (p_set_origin, ''<event pending>'');
+ perform @NAMESPACE at .storeNode_int (p_set_origin, ''<event pending>'', ''f'');
end if;
insert into @NAMESPACE at .sl_set
(set_id, set_origin, set_comment) values
- Previous message: [Slony1-commit] By cbbrowne: Fix SGML tagging error, add link so that Slonik reference
- Next message: [Slony1-commit] By smsimms: Add a missing WHERE clause that causes MOVE SET to fail
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list