Jan Wieck wieck at lists.slony.info
Mon Aug 20 11:22:28 PDT 2007
Update of /home/cvsd/slony1/slony1-engine/tools
In directory main.slony.info:/tmp/cvs-serv10238/tools

Modified Files:
	slony1_dump.sh 
Log Message:
Forward patching the new archive tracking into HEAD


Jan


Index: slony1_dump.sh
===================================================================
RCS file: /home/cvsd/slony1/slony1-engine/tools/slony1_dump.sh,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** slony1_dump.sh	22 Jun 2007 16:11:08 -0000	1.9
--- slony1_dump.sh	20 Aug 2007 18:22:26 -0000	1.10
***************
*** 89,101 ****
  
  -- ----------------------------------------------------------------------
! -- TABLE sl_setsync_offline
  -- ----------------------------------------------------------------------
! create table $clname.sl_setsync_offline (
! 	ssy_setid			int4,
! 	ssy_seqno			int8,
! 	ssy_synctime                    timestamptz,
! 
! 	CONSTRAINT "sl_setsync-pkey"
! 		PRIMARY KEY (ssy_setid)
  );
  
--- 89,98 ----
  
  -- ----------------------------------------------------------------------
! -- TABLE sl_archive_tracking
  -- ----------------------------------------------------------------------
! create table $clname.sl_archive_tracking (
! 	at_counter			bigint,
! 	at_created			timestamp,
! 	at_applied			timestamp
  );
  
***************
*** 139,167 ****
  
  -- ---------------------------------------------------------------------------------------
! -- FUNCTION setsyncTracking_offline (seq_id, seq_origin, ev_seqno, sync_time)
  -- ---------------------------------------------------------------------------------------
! create or replace function $clname.setsyncTracking_offline(int4, int8, int8, timestamptz) returns int8
  as '
  declare
! 	p_set_id	alias for \$1;
! 	p_old_seq	alias for \$2;
! 	p_new_seq	alias for \$3;
! 	p_sync_time	alias for \$4;
! 	v_row		record;
  begin
! 	select ssy_seqno into v_row from $clname.sl_setsync_offline
! 		where ssy_setid = p_set_id for update;
  	if not found then
! 		raise exception ''Slony-I: set % not found'', p_set_id;
  	end if;
  
! 	if v_row.ssy_seqno <> p_old_seq then
! 		raise exception ''Slony-I: set % is on sync %, this archive log expects %'', 
! 			p_set_id, v_row.ssy_seqno, p_old_seq;
  	end if;
! 	raise notice ''Slony-I: Process set % sync % time %'', p_set_id, p_new_seq, p_sync_time;
  
! 	update $clname.sl_setsync_offline set ssy_seqno = p_new_seq, ssy_synctime = p_sync_time
! 		where ssy_setid = p_set_id;
  	return p_new_seq;
  end;
--- 136,165 ----
  
  -- ---------------------------------------------------------------------------------------
! -- FUNCTION archiveTracking_offline (new_counter, created_timestamp)
  -- ---------------------------------------------------------------------------------------
! create or replace function $clname.archiveTracking_offline(int8, timestamp) returns int8
  as '
  declare
! 	p_new_seq	alias for \$1;
! 	p_created	alias for \$2;
! 	v_exp_seq	int8;
! 	v_old_seq	int8;
  begin
! 	select at_counter into v_old_seq from $clname.sl_archive_tracking;
  	if not found then
! 		raise exception ''Slony-I: current archive tracking status not found'';
  	end if;
  
! 	v_exp_seq := p_new_seq - 1;
! 	if v_old_seq <> v_exp_seq then
! 		raise exception ''Slony-I: node is on archive counter %, this archive log expects %'', 
! 			v_old_seq, v_exp_seq;
  	end if;
! 	raise notice ''Slony-I: Process archive with counter % created %'', p_new_seq, p_created;
  
! 	update $clname.sl_archive_tracking
! 		set at_counter = p_new_seq,
! 			at_created = p_created,
! 			at_applied = CURRENT_TIMESTAMP;
  	return p_new_seq;
  end;
***************
*** 198,207 ****
  # Fill the setsync tracking table with the current status
  # ----
! echo "select 'insert into $clname.sl_setsync_offline values (' ||
! 			ssy_setid::text || ', ''' || ssy_seqno || ''');'
! 			from $clname.sl_setsync where exists (select 1
! 						from $clname.sl_subscribe
! 						where ssy_setid = sub_set
! 							and sub_receiver = $nodeid);"
  
  # ----
--- 196,203 ----
  # Fill the setsync tracking table with the current status
  # ----
! echo "select 'insert into $clname.sl_archive_tracking values (' ||
! 			ac_num::text || ', ''' || ac_timestamp::text || 
! 			''', CURRENT_TIMESTAMP);'
! 			from $clname.sl_archive_counter";
  
  # ----



More information about the Slony1-commit mailing list