We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, When I do that : var client = new cql.Client({hosts: ['myHost'], keyspace: 'Sources_RAW'});
I have the following error : message: 'Keyspace 'sources_raw' does not exist',
I needed to re-create my keyspace lowercase for it to work (I am using cassandra 1.12)
And I am sure that the problem come from node-cassandra-cql because I ve tried with cassandra-client and it worked.
Thanks
The text was updated successfully, but these errors were encountered:
The driver does not transform the keyspace casing in any way, Cassandra does.
Apparently, you created the keyspace case sensitive (probably with another driver), you can read a full thread about it.
In this case, you could use double quotes on the keyspace name to avoid Cassandra from lower casing it.
var client = new cql.Client({hosts: ['myHost'], keyspace: '"Sources_RAW"'});
I would avoid using case sensitive identifiers for keyspaces and column families when possible...
Sorry, something went wrong.
No branches or pull requests
Hey,
When I do that :
var client = new cql.Client({hosts: ['myHost'], keyspace: 'Sources_RAW'});
I have the following error : message: 'Keyspace 'sources_raw' does not exist',
I needed to re-create my keyspace lowercase for it to work (I am using cassandra 1.12)
And I am sure that the problem come from node-cassandra-cql because I ve tried with cassandra-client and it worked.
Thanks
The text was updated successfully, but these errors were encountered: