| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- --delete from /test/alert_status with version
- -- ;
- -- SELECT
- -- *
- -- FROM
- -- /test/alert_status
- -- where tags='mytag6'
- -- /**
- -- output()
- -- **/
- -- ;
- -- delete from /test/alert_status where tags='mytag6'
- -- ;
- -- SELECT
- -- *
- -- FROM
- -- /test/alert_status limit -1
- -- /**
- -- output()
- -- **/
- -- ;
- -- select prom from /test/bucketpromdb
- -- /**
- -- output()
- -- **/
- -- ;
- -- delete prom from /test/bucketpromdb
- -- ;
- -- select prom from /test/bucketpromdb
- -- /**
- -- output()
- -- **/
- -- ;
- ;
- -- insert into /test/basic2 (v_varchar, v_text, v_int, v_bigint, v_float, v_double, v_smalldouble)
- -- values (
- -- ?,
- -- 'hello word, 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""',
- -- 1009999,
- -- 100000000999999999,
- -- 1.0099991,
- -- 1.009999123456789,
- -- 1.00999912345)
- -- /**
- -- parallel(100)
- -- loop(1000)
- -- params("perf test ...1 Bytes... 00009999")
- -- **/
- ;
- select * from /test/basic2 limit -1
- /**
- output()
- **/
- ;
- delete
- from
- /test/basic2
- where
- name='10403727673678528579'
- ;
|