We are using CQL table like this - CREATE TABLE testing ( description text, last_modified_date timeuuid, employee_id text, value text, PRIMARY KEY (employee_name, last_modified_date) )
We have made description as text in the above table. I am thinking is there any limitations on text data type in CQL such as it can only have certain number of bytes and after that it will truncate? Any other limitations that I should be knowing? Should I use blob there?