Fix cqlshtests

patch by Alex Petrov; reviewed by Robert Stupp for CASSANDRA-14007
This commit is contained in:
Alex Petrov 2018-02-22 18:29:54 +01:00 committed by Robert Stupp
parent cc43677001
commit 1b82de8c9f
1 changed files with 2 additions and 2 deletions

View File

@ -63,12 +63,12 @@ CREATE TABLE empty_table (
CREATE COLUMNFAMILY dynamic_columns (
CREATE TABLE dynamic_columns (
somekey int,
column1 float,
value text,
PRIMARY KEY(somekey, column1)
) WITH COMPACT STORAGE;
);
INSERT INTO dynamic_columns (somekey, column1, value) VALUES (1, 1.2, 'one point two');
INSERT INTO dynamic_columns (somekey, column1, value) VALUES (2, 2.3, 'two point three');