strongduanmu commented on code in PR #4553:
URL: https://github.com/apache/calcite/pull/4553#discussion_r2377380344


##########
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:
   Since QuidemTest does not support SQL statements containing dynamic 
parameters, this case is added to cover scenarios where literals are included 
in ROW expressions.



-- 
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]

Reply via email to