summaryrefslogtreecommitdiffstats
path: root/yt/yql/tests/sql/suites/subselect/inline_subquery_projection.yql
blob: 20b9d452a39ca5ab1af9375a718e5999f0383c34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* dqfile can not */
/* hybridfile can not - missing langver support */
USE plato;

SELECT (SELECT Max(key) FROM Input);

SELECT '1' || (SELECT Max(key) FROM Input);

SELECT (SELECT Max(key) FROM Input) || '1';

SELECT '1' || (SELECT Max(key) FROM Input) || '1';