On Wed, Sep 28, 2011 at 11:05, Tom Lane <[email protected]> wrote: > "Itagaki Takahiro" <[email protected]> writes: >> Our documentation says OIDS and HEADER options in COPY command take [ >> boolean ] arguments, but actually they don't accept any arguments. We can >> only set them to TRUE by specifying their names. > > Um, these examples all work fine for me in HEAD:
Ah, I was wrong. The new COPY syntax with parentheses accepts boolean values: OK: COPY tbl FROM '/file' WITH (OIDS true) NG: COPY tbl FROM '/file' WITH OIDS true So, no bugs in the docs. Sorry. -- Itagaki Takahiro -- Sent via pgsql-bugs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
