doc: Remove stale entry for removed aclitem[] ~ aclitem operator

Started by Shinya Kato10 days ago2 messageshackers
Jump to latest
#1Shinya Kato
shinya11.kato@gmail.com

Hi,

Commit 2f70fdb0644 removed the operator ~(aclitem[],aclitem), but
missed removing its entry from the aclitem operators table in the
documentation.

When running the following SQL:

postgres=# SELECT oid::regoperator, oprcode FROM pg_operator WHERE
oprright = 'aclitem'::regtype;
oid | oprcode
-----------------------+-------------
+(aclitem[],aclitem) | aclinsert
-(aclitem[],aclitem) | aclremove
@>(aclitem[],aclitem) | aclcontains
=(aclitem,aclitem) | aclitemeq
(4 rows)

But, ~(aclitem[],aclitem) is documented.

This patch removes it. Thoughts?

--
Best regards,
Shinya Kato
NTT OSS Center

Attachments:

v1-0001-doc-Remove-stale-entry-for-removed-aclitem-aclite.patchapplication/octet-stream; name=v1-0001-doc-Remove-stale-entry-for-removed-aclitem-aclite.patchDownload+0-14
#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Shinya Kato (#1)
Re: doc: Remove stale entry for removed aclitem[] ~ aclitem operator

Shinya Kato <shinya11.kato@gmail.com> writes:

Commit 2f70fdb0644 removed the operator ~(aclitem[],aclitem), but
missed removing its entry from the aclitem operators table in the
documentation.

Good catch, pushed.

regards, tom lane