Re: CREATE SCHEMA ... CREATE M.V. support

2024-11-11 Thread Alvaro Herrera
Hello Kirill On 2024-Nov-11, Kirill Reshke wrote: > I was exploring the PostgreSQL parser and discovered a very > interesting feature. Users can create schema along with schema objects > in single SQL. Yeah, it's pretty cool. > Support for materialized views began in 9.3. Perhaps, then, this is

CREATE SCHEMA ... CREATE M.V. support

2024-11-11 Thread Kirill Reshke
Hi! I was exploring the PostgreSQL parser and discovered a very interesting feature. Users can create schema along with schema objects in single SQL. So, for example ``` db1=# create schema shshshsh create table t1(i int) create view v1 as select * from t1; CREATE SCHEMA ``` works. But `create sc