mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
move cql test statements to test scope
This commit is contained in:
parent
4b47a6974a
commit
c73ca6ddea
@ -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)
|
||||||
|
);
|
@ -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));
|
Loading…
Reference in New Issue
Block a user