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

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

Merged from REL_2_0_STABLE branch


Index: slony1_funcs.v83.sql
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/src/backend/slony1_funcs.v83.sql,v
retrieving revision 1.3
retrieving revision 1.4
diff -C 2 -d -r1.3 -r1.4
*** slony1_funcs.v83.sql	31 Aug 2009 15:16:21 -0000	1.3
--- slony1_funcs.v83.sql	17 May 2010 17:16:29 -0000	1.4
***************
*** 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.3
retrieving revision 1.4
diff -C 2 -d -r1.3 -r1.4
*** slony1_funcs.v84.sql	17 Aug 2009 17:25:49 -0000	1.3
--- slony1_funcs.v84.sql	17 May 2010 17:16:29 -0000	1.4
***************
*** 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