| From: | Mehmet Emin KARAKAŞ <emin100(at)gmail(dot)com> |
|---|---|
| To: | pgsql-docs(at)postgresql(dot)org |
| Subject: | Wrong Typo |
| Date: | 2015-07-29 09:21:43 |
| Message-ID: | CANQrdXC5Se7891d=XCWfgHKGNsVD742reOKiDxStuH3i3thPvA@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-docs |
Hi Everybody,
I saw wrong typo in `ALTER FOREIGN TABLE´ documentation page.(
http://www.postgresql.org/docs/9.1/static/sql-alterforeigntable.html) On
the bottom of page have an example like that.
ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1 'value', SET
opt2, 'value2', DROP opt3 'value3');
Don't need to put comma set options values. This is wrong usage and not
working. Need to remove comma after opt2. All of documentation series the
same(9.1,9.2,9.3,9.4...).True usage is;
ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1 'value', SET
opt2 'value2', DROP opt3 'value3');
Thanks.
--
MEHMET EMİN KARAKAŞ
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Robert Haas | 2015-07-29 15:35:31 | Re: bgworker / SPI docs patches |
| Previous Message | Josh Berkus | 2015-07-29 03:23:27 | Re: Fwd: Publishing PG docs |