aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/dq/read_cost.sql
blob: 173c2f1593bf65ae5460fa444c422df3445496eb (plain) (blame)
1
2
3
4
5
6
7
8
pragma warning("disable", "4510");
pragma CostBasedOptimizer="PG";
use plato;

$foo = select subkey, key, value as v from Input order by subkey asc, key desc limit 10;
$x = process $foo;

select YQL::CostsOf($x) as costs;