From c54126bb47c90bdb67810d71f61e371088778bca Mon Sep 17 00:00:00 2001 From: Mikhail Stepura Date: Thu, 4 Sep 2014 13:36:13 -0700 Subject: [PATCH] Ninja: adjusted cqlsh tests for CASSANDRA-7857 --- pylib/cqlshlib/test/test_keyspace_init.cql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pylib/cqlshlib/test/test_keyspace_init.cql b/pylib/cqlshlib/test/test_keyspace_init.cql index b8d600cc29..cd5ac75a13 100644 --- a/pylib/cqlshlib/test/test_keyspace_init.cql +++ b/pylib/cqlshlib/test/test_keyspace_init.cql @@ -196,8 +196,8 @@ CREATE TYPE phone_number ( CREATE TABLE users ( login text PRIMARY KEY, name text, - addresses set
, - phone_numbers set + addresses set>, + phone_numbers set> ); insert into users (login, name, addresses, phone_numbers) @@ -229,8 +229,8 @@ CREATE TYPE tags ( CREATE TABLE songs ( title text PRIMARY KEY, band text, - info band_info_type, - tags tags + info frozen, + tags frozen ); insert into songs (title, band, info, tags)