Skip to content

Commit

Permalink
[FLINK-13229][table-planner-blink] ExpressionReducer with udf bug in …
Browse files Browse the repository at this point in the history
…blink (apache#9091)
  • Loading branch information
JingsongLi authored and wuchong committed Jul 15, 2019
1 parent e9db130 commit a581268
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ class CalcITCase extends BatchTestBase {
registerCollection("MyTable", data, new RowTypeInfo(STRING_TYPE_INFO), "text")

checkResult(
"SELECT hashCode(text) FROM MyTable",
Seq(row(97), row(98), row(99)
"SELECT hashCode(text), hashCode('22') FROM MyTable",
Seq(row(97,1600), row(98,1600), row(99,1600)
))
}

Expand Down

0 comments on commit a581268

Please sign in to comment.