aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/optimizers/nonselected_direct_row.sql
blob: c0e6c1c34ab88c32c4ba6c9de8d0da5e457f0be2 (plain) (blame)
1
2
3
4
5
6
7
8
use plato;

select key, subkey, value
from (
    select TablePath() as tbl, key, subkey, value
    from concat(Input1, Input2)
)
where tbl = "Input" and value != "";