我从jenkins(https://wso2.org/jenkins/view/product-builds/job/product-cep#619(22-giu-2015 22.40.10)下载了最后一个wso2cep-4.0.0-SNAPSHOT,我正在试用一个简单的执行计划:
@Plan:name('ExecutionPlan')
define stream stream3 (id string, val string);
define stream stream4 (id string, val string);
from stream3#window.timeBatch(10 seconds)
select id,val
insert into stream4
for expired-events;
当我验证代码时,我收到此错误:
无关输入' for'期待{,&#39 ;;'}
如果我删除最后一行就可以了。我在3.1.0稳定版中尝试了相同的执行计划,没有任何问题。为什么呢?
答案 0 :(得分:1)
尝试更改您的查询,如下所示
来自stream3的#p> window.timeBatch(10秒) 选择id,val 将过期事件插入stream4;