blob: 65e744bb77acf262565dfbe14753e9a858002a9c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
pragma warning("disable", "4510");
pragma CostBasedOptimizer="Native";
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;
|