CREATE USER

Поиск
Список
Период
Сортировка
От Jaime Casanova
Тема CREATE USER
Дата
Msg-id CAJKUy5iTn3oaqvZ5LaNw9M-KzSUMtoRpsQHMy2Wy=FBPoj3zBg@mail.gmail.com
обсуждение исходный текст
Ответы Re: CREATE USER  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-docs
Hi,

I just notice that when you create a user using CREATE USER and give
the user the ability to create other users it gets created as
SUPERUSER. CREATE ROLE behaves as expected.

Looking at src/backend/parser/gram.y seems it's intentional, for
backwards compatibility. But the docs says:
"""
CREATE USER is now an alias for CREATE ROLE. The only difference is
that when the command is spelled CREATE USER, LOGIN is assumed by
default, whereas NOLOGIN is assumed when the command is spelled CREATE
ROLE.
"""

So, at least, we need to update docs or is undocumented intentionally
too? also i really think the command should raise a WARNING so we now
what's happening

--
Jaime Casanova         www.2ndQuadrant.com
Professional PostgreSQL: Soporte 24x7 y capacitación

В списке pgsql-docs по дате отправления:

Предыдущее
От: Magnus Hagander
Дата:
Сообщение: Re: [HACKERS] Moving tablespaces
Следующее
От: Tom Lane
Дата:
Сообщение: Re: CREATE USER