Hi
I look for something I didn'd find in doc.
I created a column family and inserted some records using CLI.
Now I request it using cqlsh. A technical column named KEY was added by cassandra. The value stored seems to be a hash value for the key used when creating the row within the CLI interface.
I can request in cqlsh the column family using :
select * from <CF> where key=<hash value of my rowkey>
Is there a function for determining the hash value of the key and make a request like :
select * from <CF> where key=hash(<rowkey>)
Regards
