xiedeyantu commented on code in PR #4553: URL: https://github.com/apache/calcite/pull/4553#discussion_r2377391025
########## core/src/test/resources/sql/conditions.iq: ########## @@ -547,4 +547,21 @@ where 5 < cast(deptno as integer) OR 5 >= cast(deptno as integer) OR deptno IS N EnumerableTableScan(table=[[scott, EMP]]) !plan +!use scott + +# Test case for [CALCITE-7197] UnsupportedOperationException when using dynamic parameters inside ROW expression +select * +from "scott".emp +where row(empno, ename) in ((7782, 'CLARK'), (7902, 'FORD'), (7839, 'KING')); ++-------+-------+-----------+------+------------+---------+------+--------+ Review Comment: Will there be an error if a literal value is included in `ROW`? I don't know if it is still allowed to add tests in `JdbcTest`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
