aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/join_using_case_insensetive2.sql
blob: 59e95d42478fb192d24901ef70f6cf2e08679158 (plain) (blame)
1
2
3
4
5
6
--!syntax_pg
select c.FOO as a, d.* from (
    (select 1 as FOO) c
    join
    (select 1 as foo) d
    using(Foo))