| 12345678910111213141516171819202122232425262728 |
- -- ============================================================
- -- retry(N) 重试测试
- -- ============================================================
- /**
- retry(3)
- **/
- ;
- -- 故意触发错误的语句,重试 3 次后仍失败
- select * from /test/aaa/non_exist_class_retry where dummy=1
- /**
- onerror(continue,'not exist','not find','not found')
- **/
- ;
- -- retry 正常语句(不应重试)
- /**
- retry(2)
- **/
- ;
- select count(*) from /test/aaa/test_ext where e_name='ext_001'
- /**
- output()
- match("count(*)","1")
- **/
- ;
|