Hi, Can anyone tell me how to use the *IN* operator when building a Relation Node?
builder.filter(
builder.call(SqlStdOperatorTable.IN, builder.field("id"),
builder.literal(0), builder.literal(2)));
I try to execute this RelNode but always got error
message: java.lang.RuntimeException: cannot translate call IN($t0, $t6, $t8)
There are no sample test code for the IN operator. Anyway knows?
Thanks
Ken
