673674675676677678679680681682683
CassandraClient client = getClient(false); try { client.system_add_keyspace(keyspace); /* CQL3 counter cf */ client.set_cql_version("3.0.0"); // just to create counter cf for cql3 client.set_keyspace(KEYSPACE_NAME);
691692693694695696697698699700701