[PATCH][Documination] Add optional USING keyword before opclass name in INSERT statemet

From: Nikolay Shaplov <n(dot)shaplov(at)postgrespro(dot)ru>
To: pgsql-hackers(at)postgresql(dot)org
Subject: [PATCH][Documination] Add optional USING keyword before opclass name in INSERT statemet
Date: 2016-05-16 13:21:10
Message-ID: 1593237.l7oKHRpxSe@nataraj-amd64
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


If I read gram.y code for insert statement, I see that there is an optional
USING keyword before opclass name

opt_class: any_name { $$ = $1; }
| USING any_name { $$ = $2; }
| /*EMPTY*/ { $$ = NIL; }
;

but it the documentation this keyword is omitted.

I'd like to offer a patch that fixes this problem

--
Nikolay Shaplov
Postgres Professional: http://www.postgrespro.com
Russian Postgres Company

Attachment Content-Type Size
using_opclass_doc_patch.diff text/x-patch 1.4 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Greg Stark 2016-05-16 13:53:16 Re: 10.0
Previous Message Ildar Musin 2016-05-16 13:12:34 Re: Declarative partitioning