Thomas Pundt mlists at rp-online.de
Sun Mar 18 14:17:14 PDT 2007
Hi,

Christopher Browne schrieb:
> Listed below are the release notes for these releases, now available
> at main.slony.info...  =

> =

> I ran 1.2.8 thru tests on each major versions > 7.3 of PostgreSQL, so
> we're definitely not missing any version tests there.  =


there's a glitch in 1.2.8 in slony1_funcs.sql:upgradeSchema():
version numbers 1.1.7 and 1.1.8 in if-clause are improperly quoted, the
function exits with an error. A patch is attached.

Ciao,
Thomas
-------------- next part --------------
--- /usr/src/slony1-1.2.8/src/backend/slony1_funcs.sql	2007-03-16 15:43:00.=
000000000 +0100
+++ slony1_funcs.sql	2007-03-18 21:42:02.557918463 +0100
@@ -5806,7 +5806,7 @@
 	-- ----
 	-- Changes for 1.2
 	-- ----
-	if p_old IN (''1.0.2'', ''1.0.5'', ''1.0.6'', ''1.1.0'', ''1.1.1'', ''1.1=
.2'', ''1.1.3'',''1.1.5'', ''1.1.6'', "1.1.7", "1.1.8") then
+	if p_old IN (''1.0.2'', ''1.0.5'', ''1.0.6'', ''1.1.0'', ''1.1.1'', ''1.1=
.2'', ''1.1.3'',''1.1.5'', ''1.1.6'', ''1.1.7'', ''1.1.8'') then
 		-- Add new table sl_registry
 		execute ''create table @NAMESPACE at .sl_registry (
 						reg_key			text primary key,


More information about the Slony1-general mailing list