Description
See below.
default> create table "table name with space" (col int); OK default> insert into "table name with space" select 1; OK default> insert into "table name with space" select 2; OK default> insert into "table name with space" select 3; OK default> select * from "table name with space"; col -------------------------- 1 2 3 (3 rows, 0.047 sec, 0 B selected) default> default> \d "table name with space" ERROR: No error message default>
Same problem is shown in \c command.