Replicate DML.
insert into t1 values('a',1,'this is the first row') go
select * from t1 go
If the row does not exist, follow instructions in steps 4 and 5 otherwise, go to step 6.
resume connection to rds.rdb go
resume connection to rds.rdb skip transaction go
See resume connection in the Reference Manual for other available options for the resume connection command.
update t1 set c = 'this is an update' where b = 1 go
select * from t1 go
truncate table t1 go
select count (*) from t1 go
The number of rows at the replicate table, t1, should now be zero.