CVS User Account cvsuser
Wed Oct 25 12:40:21 PDT 2006
Log Message:
-----------
Replace a CONTINUE statement that doesn't work in PG 7.4 with the
expanded version of the logic.  This change went into 1.2/HEAD quite
a while ago...

Tags:
----
REL_1_1_STABLE

Modified Files:
--------------
    slony1-engine/src/backend:
        slony1_funcs.sql (r1.64.2.17 -> r1.64.2.18)

-------------- next part --------------
Index: slony1_funcs.sql
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/backend/slony1_funcs.sql,v
retrieving revision 1.64.2.17
retrieving revision 1.64.2.18
diff -Lsrc/backend/slony1_funcs.sql -Lsrc/backend/slony1_funcs.sql -u -w -r1.64.2.17 -r1.64.2.18
--- src/backend/slony1_funcs.sql
+++ src/backend/slony1_funcs.sql
@@ -323,13 +323,13 @@
 		while v_i <= v_l loop
 			if substr(p_tab_fqname, v_i, 1) != ''"'' then
 				v_i := v_i + 1;
-				continue;
-			end if;
+			else
 			v_i := v_i + 1;
 			if substr(p_tab_fqname, v_i, 1) != ''"'' then
 				exit;
 			end if;
 			v_i := v_i + 1;
+			end if;
 		end loop;
 	else
 		-- first part of ident is not quoted, search for the dot directly



More information about the Slony1-commit mailing list