aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/join/yql-4275.sql
blob: 99096a7bbd0128c4b61ed39fe4e96e10318a321e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
PRAGMA DisableSimpleColumns;
/* postgres can not */
USE plato;

SELECT
*
FROM Input as x1
JOIN (select key ?? 4 as key from Input) as x2 on x1.key == x2.key
WHERE x2.key == 4
;