| 12345678910111213141516171819202122 |
- insert into /oktest/basic (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 count(*) from /oktest/basic
- /**
- output()
- **/
|