doc: Remove stale entry for removed aclitem[] ~ aclitem operator - Mailing list pgsql-hackers

From Shinya Kato
Subject doc: Remove stale entry for removed aclitem[] ~ aclitem operator
Date
Msg-id CAOzEurQSyR5psWukyhUz1LtxyO55C2Vfp0Fmt8w2jGKxhszQmQ@mail.gmail.com
Whole thread
List 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

pgsql-hackers by date:

Previous
From: Srinath Reddy Sadipiralla
Date:
Subject: Re: REPACK CONCURRENTLY fails on tables with generated columns
Next
From: "cca5507"
Date:
Subject: Handle concurrent drop when doing whole database vacuum