Chris Browne cbbrowne at lists.slony.info
Thu Oct 22 10:51:10 PDT 2009
Update of /home/cvsd/slony1/slony1-engine
In directory main.slony.info:/tmp/cvs-serv20454

Modified Files:
      Tag: REL_1_2_STABLE
	RELEASE config.h.in 
Log Message:
3 things...

1.  Fix to problem with upgrades - need to emulate "DELETE FUNCTION IF EXISTS"
    because:
       - Old versions of PostgreSQL don't support that
       - We have 2 functions that changed return type where
         CREATE OR REPLACE FUNCTION fails due to the change in function signature

2.  Mark 1.2.18

3.  Add release notes for the above


Index: RELEASE
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/RELEASE,v
retrieving revision 1.1.2.39
retrieving revision 1.1.2.40
diff -C2 -d -r1.1.2.39 -r1.1.2.40
*** RELEASE	14 Oct 2009 15:50:53 -0000	1.1.2.39
--- RELEASE	22 Oct 2009 17:51:07 -0000	1.1.2.40
***************
*** 1,3 ****
--- 1,10 ----
  $Id$
+ Release 1.2.18
+ 
+ - Reloading of functions needs to have an emulation of
+   "DROP FUNCTION IF EXISTS" because a couple of functions have had their
+   return value type changed, which doesn't fit happily into
+   CREATE OR REPLACE FUNCTION.
+ 
  Release 1.2.17
  

Index: config.h.in
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/config.h.in,v
retrieving revision 1.17.2.19
retrieving revision 1.17.2.20
diff -C2 -d -r1.17.2.19 -r1.17.2.20
*** config.h.in	17 Aug 2009 17:39:57 -0000	1.17.2.19
--- config.h.in	22 Oct 2009 17:51:07 -0000	1.17.2.20
***************
*** 13,18 ****
  #define SLONY_I_CONFIG_H
  
! #define SLONY_I_VERSION_STRING	"1.2.17"
! #define SLONY_I_VERSION_STRING_DEC 1,2,17
  
  #ifndef PG_VERSION_MAJOR
--- 13,18 ----
  #define SLONY_I_CONFIG_H
  
! #define SLONY_I_VERSION_STRING	"1.2.18"
! #define SLONY_I_VERSION_STRING_DEC 1,2,18
  
  #ifndef PG_VERSION_MAJOR



More information about the Slony1-commit mailing list