Skip to content

Commit e22feac

Browse files
fix(rdb): review hugo
1 parent 485162b commit e22feac

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pages/managed-databases-for-postgresql-and-mysql/api-cli/logical-replication-as-subscriber.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ To be able to create a subscription, you must have the privileges of the `pg_cre
3434

3535
1. Grant `pg_create_subscription` and CREATE privileges to your role of choice. In this example we use `my_replication_user`. Make sure you replace all variables with the information of your databases.
3636

37+
<Message type="note">
38+
You must follow the step below as an admin. Only users with admin rights can grant `pg_create_subscription` to other users.
39+
</Message>
40+
3741
```sql
3842
GRANT pg_create_subscription TO my_replication_user;
3943
GRANT CREATE ON DATABASE my_database TO my_replication_user;

0 commit comments

Comments
 (0)