Fri May 26 11:00:51 PDT 2006
- Previous message: [Slony1-commit] By cbbrowne: Add to release notes that Bug #1538 has been fixed
- Next message: [Slony1-commit] By cbbrowne: Remove code from slonik_store_node.pl that lists listen
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Log Message:
-----------
store listen functions had been deactivated; they would simply
return -1 rather than doing anything to sl_listen.
This patch restores them. USUALLY the contents of sl_listen should be
generated correctly automatically. We shouldn't hinder the admin's
ability to use STORE LISTEN if they encounter unusual circumstances.
Modified Files:
--------------
slony1-engine/src/backend:
slony1_funcs.sql (r1.83 -> r1.84)
-------------- next part --------------
Index: slony1_funcs.sql
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/backend/slony1_funcs.sql,v
retrieving revision 1.83
retrieving revision 1.84
diff -Lsrc/backend/slony1_funcs.sql -Lsrc/backend/slony1_funcs.sql -u -w -r1.83 -r1.84
--- src/backend/slony1_funcs.sql
+++ src/backend/slony1_funcs.sql
@@ -1721,8 +1721,6 @@
p_provider alias for $2;
p_receiver alias for $3;
begin
- return -1;
-
perform @NAMESPACE at .storeListen_int (p_origin, p_provider, p_receiver);
return @NAMESPACE at .createEvent (''_ at CLUSTERNAME@'', ''STORE_LISTEN'',
p_origin, p_provider, p_receiver);
@@ -1810,8 +1808,6 @@
p_li_provider alias for $2;
p_li_receiver alias for $3;
begin
- return -1;
-
perform @NAMESPACE at .dropListen_int(p_li_origin,
p_li_provider, p_li_receiver);
@@ -1838,8 +1834,6 @@
p_li_provider alias for $2;
p_li_receiver alias for $3;
begin
- return -1;
-
-- ----
-- Grab the central configuration lock
-- ----
- Previous message: [Slony1-commit] By cbbrowne: Add to release notes that Bug #1538 has been fixed
- Next message: [Slony1-commit] By cbbrowne: Remove code from slonik_store_node.pl that lists listen
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Slony1-commit mailing list