mapjoin_with_empty_struct.sql 275 B

1234567891011121314
  1. PRAGMA DisableSimpleColumns;
  2. /* postgres can not */
  3. /* kikimr can not */
  4. /* ignore yt detailed plan diff */
  5. use plato;
  6. pragma yt.MapJoinLimit="10M";
  7. $sizes = (
  8. SELECT
  9. 0 AS id
  10. FROM Input
  11. );
  12. SELECT d.key FROM Input as d CROSS JOIN $sizes as s ORDER BY d.key;