mergejoin_left_null_column.sql 336 B

12345678910111213
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. PRAGMA yt.JoinMergeTablesLimit="10";
  4. PRAGMA yt.JoinAllowColumnRenames="true";
  5. PRAGMA yt.JoinMergeUnsortedFactor="5.0";
  6. USE plato;
  7. $t = [<|"x":"bbb", "y":1, "z":Null|>, <|"x":"bbb", "y":2, "z":Null|>];
  8. SELECT * FROM Input1 AS a LEFT JOIN AS_TABLE($t) AS b ON a.k1 = b.x ORDER BY k1, y;