Steve Singer,,, ssinger at lists.slony.info
Mon May 17 10:15:21 PDT 2010
Update of /home/cvsd/slony1/slony1-engine/src/backend
In directory main.slony.info:/tmp/cvs-serv1492/src/backend

Modified Files:
      Tag: REL_2_0_STABLE
	slony1_funcs.v83.sql slony1_funcs.v84.sql 
Log Message:
The variable name is wrong (syntax error on execution).  Switched to correct 
variable name


Index: slony1_funcs.v83.sql
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/src/backend/slony1_funcs.v83.sql,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C 2 -d -r1.1.2.2 -r1.1.2.3
*** slony1_funcs.v83.sql	31 Aug 2009 15:15:17 -0000	1.1.2.2
--- slony1_funcs.v83.sql	17 May 2010 17:15:19 -0000	1.1.2.3
***************
*** 38,42 ****
  	select into c_table oid from "pg_catalog".pg_class where relname = i_tblname and relnamespace = c_namespace;
  	if not found then
! 		raise warning 'Slony-I: table % does not exist in namespace %/%', tblname, c_namespace, i_nspname;
  		return 'f'::boolean;
  	end if;
--- 38,42 ----
  	select into c_table oid from "pg_catalog".pg_class where relname = i_tblname and relnamespace = c_namespace;
  	if not found then
! 		raise warning 'Slony-I: table % does not exist in namespace %/%', i_tblname, c_namespace, i_nspname;
  		return 'f'::boolean;
  	end if;

Index: slony1_funcs.v84.sql
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/src/backend/slony1_funcs.v84.sql,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C 2 -d -r1.1.2.2 -r1.1.2.3
*** slony1_funcs.v84.sql	17 Aug 2009 16:56:09 -0000	1.1.2.2
--- slony1_funcs.v84.sql	17 May 2010 17:15:19 -0000	1.1.2.3
***************
*** 38,42 ****
  	select into c_table oid from "pg_catalog".pg_class where relname = i_tblname and relnamespace = c_namespace;
  	if not found then
! 		raise warning 'Slony-I: table % does not exist in namespace %/%', tblname, c_namespace, i_nspname;
  		return 'f'::boolean;
  	end if;
--- 38,42 ----
  	select into c_table oid from "pg_catalog".pg_class where relname = i_tblname and relnamespace = c_namespace;
  	if not found then
! 		raise warning 'Slony-I: table % does not exist in namespace %/%', i_tblname, c_namespace, i_nspname;
  		return 'f'::boolean;
  	end if;



More information about the Slony1-commit mailing list