premap_context_dep.sql 259 B

12345678
  1. PRAGMA DisableSimpleColumns;
  2. PRAGMA DisablePullUpFlatMapOverJoin;
  3. use plato;
  4. from (select key, subkey || key as subkey, value, TableRecordIndex() as tr from Input1) as a
  5. join Input2 as b using(key)
  6. select a.key, a.subkey, a.tr, b.value
  7. order by a.key, a.tr;