> will get dumped as:
>
> CREATE TABLE "c5" (
> "f1" integer NOT NULL,
> "f3" integer
> )
> inherits ("p3_def1");
As an aside answer without considerable importance:
Why do people tend to write SQL keywords in all capitals ?
PostgreSQL converts everything to lower case (which I like).
So why not output lowercase ? Above example even mixes
case, why ?
Andreas