in_tuple_check1_fail.sql 155 B

123456
  1. /* custom error:Can't compare Tuple<Int32,Int32> with Int32*/
  2. select AsTuple(1, 1) in (
  3. AsTuple(2, 1),
  4. AsTuple(1, 2),
  5. 42 -- expect tuple, not data
  6. )