| 123456789101112131415161718192021222324 |
- -- ============================================================
- -- scope(top) loop(N) 测试:<topi> <topcount>
- -- ============================================================
- /**
- scope(top)
- loop(5)
- **/
- ;
- -- 在整个测试套件顶层循环 5 次
- -- topi=循环索引, topcount=总循环次数
- insert into /test/aaa/test_ext (e_name, e_value, e_text) values (<topi>, {%d,topi}, concat('topi=', <topi>, ' topcount=', <topcount>))
- /**
- sleep(100ms)
- **/
- ;
- -- 验证 top 循环结果
- select e_name, e_value from /test/aaa/test_ext where e_name prefix 'top'
- /**
- output()
- **/
- ;
|