mapjoin_left_null_column.sql 248 B

1234567891011
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. PRAGMA yt.MapJoinLimit="1m";
  4. USE plato;
  5. $t = [<|"x":"150", "y":1, "z":Null|>, <|"x":"150", "y":2, "z":Null|>];
  6. SELECT * FROM Input1 AS a LEFT JOIN AS_TABLE($t) AS b ON a.key = b.x ORDER BY key, y;