I am running Spark Report on spark version 2.4.4 on Cassandra where I am joining two tables and using RDD CassandraJavaUtil javafunctions joinWithCassandraTable with first param of keyspace_name [ all lower case letters ] "abc " and second param of table_name [ mix of lowercase and upper case letters ] "xyZ" , then i am getting error Couldn't find table "xyz" in keyspace "abc". As connector i guess lowers all characters and searching the lowercase letter table name which does not exist in keyspace.
I used escaped character for mixed letter table name "xy\"Z\"" . But still I am getting the same error. Couldn't find table "xyZ" in keyspace "abc". Found similar tables in the keyspace abc.xyZ
How can use the joinWithCassandraTable for mixed letters table name as escaped characters not working for mixed letters table name.