aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/runtime_quote_code.sql
blob: f13eea773d09423f792c98a7180c36052d032973 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* postgres can not */
/* syntax version 1 */
select
    FormatCode(QuoteCode(AsAtom("foo"))),
    FormatCode(QuoteCode(AsTuple())),
    FormatCode(QuoteCode(AsTuple(AsAtom("foo"),AsAtom("bar")))),
    FormatCode(QuoteCode(1)),
    FormatCode(QuoteCode(($x,$y)->{ return $x+$y })),
    ListMap(ListFromRange(1,4), ($x)->{
        return FormatCode(QuoteCode(
            ($y)->{ return $x+$y }
        ))
    });