I'm currently using helenus library for inserting a column family.
CREATE TABLE page_request (
c_date text,
c_id timeuuid,
s bigint,
PRIMARY KEY (c_date, c_id)
);
I'm parsing the integer by parseInt();.
I'm using prepared statement of helenus. However, when my big integer s is bigint, parseInt() function converts this integer to float. Is there any specific case for inserting bigint to helenus ?
NOTE: Number() function also doesn't work