| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- multilines begin;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('aaaa', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('bbbb', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('cccc', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('dddd', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('eeee', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('ffff', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('gggg', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('hhhh', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('iiii', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('jjjj', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- insert into /test/测试二 (字符串, 文本, 整数, 大整数, 浮点, 自定义类型, 双浮点, 布尔, 数据块)
- values ('kkkk', '..............', 5, 1234567890123456789, 1.1, 1.1234567890123456, 1.123456, true, "hello" )
- ;
- multilines end;
- /**
- sleep(3s)
- **/
- ;
|