blob: b1a185414e59ccdc86b4848b4803c0c638340afe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
PRAGMA DisableAnsiInForEmptyOrNullableItemsCollections;
SELECT
null IN EmptyList(), -- Nothing<Bool?>
null IN EmptyDict(), -- Nothing<Bool?>
null IN (), -- Nothing<Bool?>
1 IN EmptyList(), -- false
1 IN EmptyDict(), -- false
1 IN (), -- false
null IN Nothing(EmptyList?), -- Nothing<Bool?>
null IN Nothing(EmptyDict?), -- Nothing<Bool?>
null IN Nothing(ParseType("Tuple<>?")), -- Nothing<Bool?>
;
|