I create a table and filled it with approx 1Mio data. But now, the select query takes up to 16 seconds (select by date).
How can I add an index to an existing table to improve the search performance? I dont quite get it from here: https://crate.io/docs/reference/sql/reference/alter_table.html#partition-clause
Something like this would be nice:
alter table table_name reset column_name index using PLAIN
Thanks alot!