blob: 6d8e43fe13a1659177f8d6e3c7ca8c21c1e20247 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
--!syntax_pg
select * from (values (1),(1),(1)) a(x)
intersect all
select * from (values (1),(1)) a(x);
select * from (values (1),(1),(1)) a(x)
intersect all
select * from (values (2)) a(x);
|