move cql test statements to test scope

This commit is contained in:
Jonathan Shook 2020-09-24 11:52:40 -05:00
parent 4b47a6974a
commit c73ca6ddea
39 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,8 @@
CREATE TABLE cycling.race_winners (
race_name text,
race_position int,
cyclist_name FROZEN<fullname>,
rider_code text,
details text,
PRIMARY KEY ((race_name, race_position), cyclist_name, rider_code)
);

View File

@ -0,0 +1,5 @@
CREATE TABLE cycling.race_winners (
race_name text,
race_position int,
cyclist_name List<Set<fullname>>,
PRIMARY KEY (race_name, race_position));