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
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