This should be allowed, currently fails.
postgres=> create temporary table tbl (id serial);
ERROR: relation "tbl" does not exist (errno 1105) (sqlstate HY000)
This query will work, however:
postgres=> create temporary table tbl (id serial primary key);
CREATE TABLE
This should be allowed, currently fails.
This query will work, however: