in_ansi_empty.sql 659 B

1234567891011121314151617
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. PRAGMA AnsiInForEmptyOrNullableItemsCollections;
  4. SELECT
  5. null IN EmptyList(), -- false?
  6. null IN EmptyDict(), -- false?
  7. null IN (), -- false?
  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. ;