aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/evaluate_queries.sql
blob: 8671f14defb2812f0c9905dfa9202b817fef157c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* syntax version 1 */
/* postgres can not */
USE plato;

$s = (select count(*) from Input);
select EvaluateExpr($s);
/*
$s = (select key from Input);
select EvaluateExpr($s);

$s = (select key || "foo" from Input);
select EvaluateExpr($s);

$s = (select aggregate_list(key) from Input);
select EvaluateExpr($s);

$s = (select v from (select key,min(value) as v from Input group by key order by key limit 1));
select EvaluateExpr($s);

$s = (select key from Input order by key limit 1);
select EvaluateExpr($s);

$s = (select lag(key) over w from Input window w as ());
select EvaluateExpr($s);

$s = (select a.key from Input as a join Input as b using(key));
select EvaluateExpr($s);
*/