Repository: cassandra
Updated Branches:
  refs/heads/trunk cc4367700 -> 1b82de8c9


Fix cqlshtests

patch by Alex Petrov; reviewed by Robert Stupp for CASSANDRA-14007


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/1b82de8c
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/1b82de8c
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/1b82de8c

Branch: refs/heads/trunk
Commit: 1b82de8c9fe62cf78f07cf54fe32b561058eebe5
Parents: cc43677
Author: Alex Petrov <oleksandr.pet...@gmail.com>
Authored: Thu Feb 22 18:29:54 2018 +0100
Committer: Robert Stupp <sn...@snazy.de>
Committed: Thu Feb 22 18:30:50 2018 +0100

----------------------------------------------------------------------
 pylib/cqlshlib/test/test_keyspace_init.cql | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/1b82de8c/pylib/cqlshlib/test/test_keyspace_init.cql
----------------------------------------------------------------------
diff --git a/pylib/cqlshlib/test/test_keyspace_init.cql 
b/pylib/cqlshlib/test/test_keyspace_init.cql
index c64163a..26e8dae 100644
--- a/pylib/cqlshlib/test/test_keyspace_init.cql
+++ b/pylib/cqlshlib/test/test_keyspace_init.cql
@@ -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');


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to