aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select/tablepathprefix.sql
blob: f543356ff08b3538cd93aecf87d4efb729cadf4f (plain) (blame)
1
2
3
4
5
6
7
8
9
/* postgres can not */
/* syntax version 1 */
use plato;
pragma TablePathPrefix = "//";

$input = "In" || "put";

select * from `Input` order by subkey;
select * from $input order by subkey;