@@ -414,11 +414,13 @@ func TestSample(t *testing.T) {
414414out = runSample (t , directedReadOptions , dbName , "failed to read using directed read options" )
415415assertContains (t , out , "1 1 Total Junk" )
416416
417+ out = runSample (t , rwTxnExcludedFromChangeStreams , dbName , "failed to commit rw txn excluded from change streams" )
418+ assertContains (t , out , "New singer inserted." )
419+ assertContains (t , out , "Singer first name updated." )
417420out = runSample (t , applyExcludedFromChangeStreams , dbName , "failed to apply mutations excluded from change streams" )
418421assertContains (t , out , "New singer inserted." )
419- out = runSample (t , rwTxnExcludedFromChangeStreams , dbName , "failed to commit rw txn excluded from change streams" )
422+ out = runSample (t , applyAtLeastOnceExcludedFromChangeStreams , dbName , "failed to apply at least once mutations excluded from change streams" )
420423assertContains (t , out , "New singer inserted." )
421- assertContains (t , out , "Singer first name updated." )
422424out = runSample (t , batchWriteExcludedFromChangeStreams , dbName , "failed to write data using BatchWrite excluded from change streams" )
423425assertNotContains (t , out , "could not be applied with error" )
424426out = runSample (t , pdmlExcludedFromChangeStreams , dbName , "failed to update using partitioned DML excluded from change streams" )
0 commit comments