in_ansi_dict1.sql 321 B

123456789101112
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. PRAGMA AnsiInForEmptyOrNullableItemsCollections;
  4. SELECT
  5. 1 IN {2, 3, null}, -- Nothing<Bool?>
  6. 2 IN {2, 3, null}, -- true?
  7. (1, 2) IN {(1, null), (2, 1)}, -- Nothing<Bool?>
  8. (1, 2) IN {(1, null), (1, 2)}, -- true?
  9. ;