Hi,
tab completion for "create unlogged" gives this:
postgres=# create unlogged
MATERIALIZED VIEW TABLE
Given that a materialized table can not be unlogged:
postgres=# create unlogged materialized view mv1 as select 1;
ERROR: materialized views cannot be unlogged
Should this really show up there?
Regards
Daniel