Fei Feng created BEAM-2209:
------------------------------
Summary: NoSuchFiled exception when use beam-dsls-sql jar
Key: BEAM-2209
URL: https://issues.apache.org/jira/browse/BEAM-2209
Project: Beam
Issue Type: Bug
Components: dsl-sql
Environment: jdk1.8 idea
Reporter: Fei Feng
Assignee: Xu Mingmin
when use beam-dsls-sql jar to filter BeamSqlRecord will cause an NoSuchField
Exception。
change
from
for (RexNode subNode : node.operands) {
subExps.add(buildExpression(subNode));
}
to
for (RexNode subNode : node.getOperands()) {
subExps.add(buildExpression(subNode));
}
will fix this error.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)