Duplicate "SELECT current_user;" - Mailing list pgsql-docs

From PG Doc comments form
Subject Duplicate "SELECT current_user;"
Date
Msg-id 161591740692.24273.4202054598867879464@wrigleys.postgresql.org
Whole thread Raw
Responses Re: Duplicate "SELECT current_user;"  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/13/ddl-rowsecurity.html
Description:

On this page I see the following example:
----cut----
=> SELECT current_user;
 current_user 
--------------
 admin
(1 row)

=> select inet_client_addr();
 inet_client_addr 
------------------
 127.0.0.1
(1 row)

=> SELECT current_user;
 current_user 
--------------
 admin
(1 row)
----cut----

One of executions of "SELECT current_user;" is redundant and can be removed.

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: Transaction ID modulo
Next
From: PG Doc comments form
Date:
Subject: A very confusing line...