Incorrect dropuser command in postgress 11

Started by PG Bug reporting formabout 6 years ago2 messagesdocs
Jump to latest
#1PG Bug reporting form
noreply@postgresql.org

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/11/app-dropuser.html
Description:

The command given in documentation for dropping a postgres user is 'dropuser
<username>' . It should be 'drop user <username>'. The previous one gives
syntax error

#2Daniel Gustafsson
daniel@yesql.se
In reply to: PG Bug reporting form (#1)
Re: Incorrect dropuser command in postgress 11

On 18 Mar 2020, at 19:07, PG Doc comments form <noreply@postgresql.org> wrote:

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/11/app-dropuser.html
Description:

The command given in documentation for dropping a postgres user is 'dropuser
<username>' . It should be 'drop user <username>'. The previous one gives
syntax error

This is the documentation page for the dropuser application, not to be confused
with the SQL command for doing the same, documented at:

https://www.postgresql.org/docs/11/sql-droprole.html

So the command is perfectly correct, for running the dropuser application.

cheers ./daniel