aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/pg_view.sql
blob: f62fe320b396ef57c712bfd9bd070427a368dff6 (plain) (blame)
1
2
3
4
5
6
7
--!syntax_pg
create view a(x,y) as select 1,2;
select * from a;
create or replace view a(x,y) as values (3,4);
select * from a;
drop view a;
drop view if exists a,b,c;