Chris Browne cbbrowne at lists.slony.info
Tue Jul 14 12:09:02 PDT 2009
Update of /home/cvsd/slony1/slony1-engine/src/slonik
In directory main.slony.info:/tmp/cvs-serv2542/src/slonik

Modified Files:
      Tag: REL_2_0_STABLE
	slonik.c 
Log Message:
1.  Mark 2.0.3 version, preparatory to release

2.  Update release notes to include changes (to date) to 2.0.3

3.  slonik.c now recognizes PostgreSQL 8.4 properly


Index: slonik.c
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/src/slonik/slonik.c,v
retrieving revision 1.91.2.2
retrieving revision 1.91.2.3
diff -C2 -d -r1.91.2.2 -r1.91.2.3
*** slonik.c	17 Jun 2009 21:37:38 -0000	1.91.2.2
--- slonik.c	14 Jul 2009 19:09:00 -0000	1.91.2.3
***************
*** 1800,1804 ****
  		use_minor = 3;
  	}
! 	else	/* above 8.3 ??? */
  	{
  		use_major = 8;
--- 1800,1809 ----
  		use_minor = 3;
  	}
! 	else if ((adminfo->pg_version >= 80400) && (adminfo->pg_version < 80500)) /* 8.4 */
! 	{
! 		use_major = 8;
! 		use_minor = 3;   /* at this point, there's nothing specifically different in 8.4 from 8.3 */
! 	}
! 	else	/* above 8.4 ??? */
  	{
  		use_major = 8;



More information about the Slony1-commit mailing list