62.insert.mql 563 B

12345678910111213141516171819202122
  1. insert into /test/basic2 (v_varchar, v_text, v_int, v_bigint, v_float, v_double, v_smalldouble)
  2. values (
  3. ?,
  4. 'hello word, 2003 123-456-789 中华人民共和国是中国的唯一合法政府,台湾是中国一部分。 Mercury, Venus2,Earch%。Mars$Uranus CeresAndJupiterOrSaturn #Neptune Pluto_Charon"\""',
  5. 100999999,
  6. 100000000999999999,
  7. 1.009999991,
  8. 1.00999999123456789,
  9. 1.0099999912345)
  10. /**
  11. parallel(1000)
  12. loop(100000)
  13. params("perf test ...1 Bytes... 000099999")
  14. **/
  15. ;
  16. select count(*) from /test/basic2
  17. /**
  18. output()
  19. **/