| 123456789101112131415161718192021222324252627282930313233 |
- create class if not exists /test() with namespace="test"
- delete from /test/foo with version
- /**
- onerror(continue)
- noerrinfo()
- **/
- ;
- drop class if exists /test/foo
- ;
- create class if not exists /test/foo (
-
- v_varchar varchar,
- v_text text,
- v_string text,
- 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_int, v_bigint, v_double, v_float, v_bool, v_set, v_map, v_list),
- keys(v_varchar, v_text)
- ) with core=cassandraonly;
|