Reputation: 1553
https://github.com/ostinelli/erlcassa I am using this erlang cassandra client is support cqlsh3 features. As i tried composite column and select query with allow filtering are not supported this client is there any solution for that features support.
Upvotes: 0
Views: 135
Reputation: 189
Hello you can use the Erlcass driver which is based on the native datastax cpp driver.
In the config you need to specify the protocol_version
in order to change the default value.
Upvotes: 1
Reputation: 20245
Cassandra CQL3 is a new iteration of CQL. And while erlcassa supports CQL but it is obviously that it doesn't support CQL3 (considering the source files are two years old).
Upvotes: 1