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

From: Shinya Kato <shinya11(dot)kato(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: doc: Remove stale entry for removed aclitem[] ~ aclitem operator
Date: 2026-06-14 04:42:57
Message-ID: CAOzEurQSyR5psWukyhUz1LtxyO55C2Vfp0Fmt8w2jGKxhszQmQ@mail.gmail.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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

Attachment Content-Type Size
v1-0001-doc-Remove-stale-entry-for-removed-aclitem-aclite.patch application/octet-stream 1.5 KB

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message cca5507 2026-06-14 07:12:43 Handle concurrent drop when doing whole database vacuum
Previous Message Srinath Reddy Sadipiralla 2026-06-14 03:56:48 Re: REPACK CONCURRENTLY fails on tables with generated columns