bianca-stanciu29 opened a new pull request, #365:
URL: https://github.com/apache/cassandra-sidecar/pull/365

   Cassandra CQL allows keyspace names to be defined as quoted identifiers, 
which
   preserves their exact casing (e.g. CREATE KEYSPACE “MyKeyspace”).
   
   The DataStax Java Driver (com.datastax.driver.core.Metadata) stores such 
keyspaces with their case-preserved name internally. When querying the Driver’s 
Metadata API, the argument must also be quoted for the Driver to perform a 
case-sensitive lookup. Without quoting, the Driver treats the argument as a 
case-insensitive identifier, normalizes it to
   lowercase, and fails to find the keyspace.
   
   A restore job targeting a keyspace created with a quoted mixed-case name 
(e.g.
   “MyKeyspace”) fails with “Keyspace does not exist” during SSTable range 
validation,
   even though the keyspace is present in the cluster.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to