| 12345678910111213141516171819202122 |
- 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"\""',
- 100999999,
- 100000000999999999,
- 1.009999991,
- 1.00999999123456789,
- 1.0099999912345)
- /**
- parallel(1000)
- loop(100000)
- params("perf test ...1 Bytes... 000099999")
- **/
- ;
- select count(*) from /test/basic2
- /**
- output()
- **/
|