| 12345678910111213 |
- create class if not exists /test/order (
- v_text text,
- v_int int,
- v_bigint bigint,
- v_double double,
- v_float float,
- v_bool bool,
-
- indexes(v_text, v_int, v_bigint, v_double, v_float, v_bool),
- keys(v_text)
- ) with core='cassandraonly', autosearch=true , version=false
- ;
|