10class.mql 289 B

12345678910111213
  1. create class if not exists /test/order (
  2. v_text text,
  3. v_int int,
  4. v_bigint bigint,
  5. v_double double,
  6. v_float float,
  7. v_bool bool,
  8. indexes(v_text, v_int, v_bigint, v_double, v_float, v_bool),
  9. keys(v_text)
  10. ) with core='cassandraonly', autosearch=true , version=false
  11. ;