summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/subselect/receiver_primitive.yql
blob: 9a600eaf5e833854c3c0ed78e8f5512e2569ff1c (plain) (blame)
1
2
3
4
5
6
7
8
/* custom error: Expected (optional) struct/tuple or variant based on it, but got: Optional<Int32> */

SELECT
    (
        SELECT
            1 AS x
    ).x
;