[DOCS] alter_foreign_table.sgml typo

From: Mehmet Emin KARAKAŞ <emin100(at)gmail(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: [DOCS] alter_foreign_table.sgml typo
Date: 2023-06-07 14:25:28
Message-ID: CANQrdXAHzbcEYhjGoe5A42OmfvdQhHFJzyKj9gJvHuDKyOF5Ng@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Fixed typo in SQL.

Current: ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1
'value', SET opt2 'value2', DROP opt3 'value3');

Fixed: ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1 'value',
SET opt2 'value2', DROP opt3);

Drop options do not get a value.

--
MEHMET EMİN KARAKAŞ

Attachment Content-Type Size
0001-Fixed-typo-in-SQL.patch application/octet-stream 1.2 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tristan Partin 2023-06-07 14:31:10 Fix last unitialized memory warning
Previous Message Joel Jacobson 2023-06-07 14:21:52 Re: Do we want a hashset type?