aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/list_indexof.sql
blob: 47be99e547e6d7d2283fbce7b670a74d2bc5a84c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
$list = [1, 2, 3];

$opt_list = [1, null, 2, 3];

select
    ListIndexOf($list, 2),
    ListIndexOf($list, 100),
    ListIndexOf(Just($opt_list), 2),
    ListIndexOf(Just($opt_list), 200),
    ListIndexOf(Nothing(List<Int32>?), 2),
    ListIndexOf([], 'foo'),
    ListIndexOf(null, 1.0),
;