| 12345678910111213141516171819202122232425262728293031323334 |
- create class if not exists /test() with namespace="test"
- ;
- delete from /test/foo with version
- /**
- onerror(continue,`not exist`,`not find`,`not found`)
- **/
- ;
- drop class if exists /test/foo
- ;
- create class if not exists /test/foo (
-
- v_varchar varchar,
- v_text text,
- v_string text,
- v_chars varchar,
- v_int int,
- v_bigint bigint,
- v_double double,
- v_float float,
- v_bool bool,
- v_blob blob,
- v_set set<varchar>,
- v_map map<varchar,float>,
- v_list list<varchar>,
-
- indexes(v_varchar, v_text, v_string, v_chars, v_int, v_bigint, v_double, v_float, v_bool, v_set, v_map, v_list),
- keys(v_varchar, v_text)
- ) with core=cassandraonly;
|