aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/in/in_tuple_check0_fail.sql
blob: f32fb9bcff00333f68d48e8dcc6739f16e030804 (plain) (blame)
1
2
3
4
5
6
/* custom error:Can't compare Tuple<Int32,Int32> with Tuple<Int32,Tuple<Int32,Int32>>*/
select AsTuple(1, 1) in (
  AsTuple(2, 1),
  AsTuple(1, 2),
  AsTuple(1, AsTuple(1, 2)), -- expect compatible tuple
)