in_noansi_empty.sql 690 B

1234567891011121314151617
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. PRAGMA DisableAnsiInForEmptyOrNullableItemsCollections;
  4. SELECT
  5. null IN EmptyList(), -- Nothing<Bool?>
  6. null IN EmptyDict(), -- Nothing<Bool?>
  7. null IN (), -- Nothing<Bool?>
  8. 1 IN EmptyList(), -- false
  9. 1 IN EmptyDict(), -- false
  10. 1 IN (), -- false
  11. null IN Nothing(EmptyList?), -- Nothing<Bool?>
  12. null IN Nothing(EmptyDict?), -- Nothing<Bool?>
  13. null IN Nothing(ParseType("Tuple<>?")), -- Nothing<Bool?>
  14. ;