| 12345678910111213141516171819202122 |
- create class if not exists /oktest() with namespace="oktest"
- ;
- create class /oktest/aaa (
- v_varchar varchar,
- v_text text,
- v_int int,
- v_bigint bigint,
- v_double double,
- v_float float,
- v_bool bool,
- v_blob blob,
- v_date date,
- v_timestamp timestamp,
-
- indexes(v_varchar, v_text, v_int, v_bigint, v_double, v_float, v_bool, v_date, v_timestamp),
- keys(v_varchar, v_date, v_timestamp)
- ) with core=cassandraonly;
|