Skip to content

Commit 3a79aaf

Browse files
committed
CDM-92: Added new record to test target nulls
1 parent 38c501d commit 3a79aaf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

SIT/smoke/04_counters/setup.cql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ UPDATE origin.smoke_counters set col1=col1+1000, col2=col2+2000 where key='recor
77
UPDATE origin.smoke_counters set col1=col1+10000, col2=col2+20000 where key='record4';
88
UPDATE origin.smoke_counters set col1=col1+500, col2=col2+500 where key='record5';
99
UPDATE origin.smoke_counters set col1=col1+500 where key='record6';
10+
UPDATE origin.smoke_counters set col1=col1+1, col2=col2+2 where key='record7';
1011

1112
DROP TABLE IF EXISTS target.smoke_counters;
1213
CREATE TABLE target.smoke_counters(key text,col1 counter,col2 counter, PRIMARY KEY (key));
1314

14-
UPDATE target.smoke_counters set col1=col1+1 where key='record1';
15+
UPDATE target.smoke_counters set col1=col1+1 where key='record7';
1516

1617
SELECT * FROM origin.smoke_counters;

0 commit comments

Comments
 (0)