I'm trying to get a Double value from a Cassandra table with a double type column. I've created the table in CQL3 syntax:
CREATE TABLE data_double (
datetime timestamp,
value double,
primary key (datetime)
);
I've inserted a row:
INSERT INTO data_double (datetime, value) VALUES ('111111111', 123.456);
When I do:
SELECT * from data_double;
I get that the value is 123.46
Why is the value rounded?
Thanks