I'm new in Cassandra and when I was copying a CSV in Cassandra I found a problem with the position of my timestamp column. I'm using cqlsh 5.0.1 | Cassandra 2.1.2 | CQL spec 3.2.0 | Native protocol v3
CREATE TABLE events (
id int,
type int,
eventdate timestamp,
PRIMARY KEY (id)
);
select * from events;
id | eventdata | type
----+-----------+------
Why is Cassandra changing the position of the timestamp column?
Thanks.