Thread: Incorrect dropuser command in postgress 11

Incorrect dropuser command in postgress 11

From
PG Doc comments form
Date:
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

Re: Incorrect dropuser command in postgress 11

From
Daniel Gustafsson
Date:
> 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