mapjoin_sharded.sql 326 B

12345678910111213
  1. use plato;
  2. /* postgres can not */
  3. /* kikimr can not */
  4. pragma DisableSimpleColumns;
  5. /* yt_local_var: MAP_JOIN_LIMIT = 30 */
  6. /* yqlrun_var: MAP_JOIN_LIMIT = 1000 */
  7. pragma yt.MapJoinLimit="MAP_JOIN_LIMIT";
  8. pragma yt.MapJoinShardCount = "10";
  9. select *
  10. from Input1 as a join Input2 as b on a.key = b.key and a.subkey = b.key;