Skip to content

Commit 77cc567

Browse files
fix(rdb): reviews
Co-authored-by: Rowena Jones <[email protected]>
1 parent 4045329 commit 77cc567

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ To enable logical replication, you must:
3636
It is essential to set these parameters when using logical replication to ensure service availability.
3737
</Message>
3838

39-
4039
To use replication, users must also have the corresponding rights.
4140

4241
Follow the steps in the [How to manage users](/managed-databases-for-postgresql-and-mysql/how-to/manage-users) documentation page to attribute user rights.
@@ -57,7 +56,7 @@ We use an example scenario to show how logical replication can be set up.
5756
CREATE TABLE mytable (id INTEGER PRIMARY KEY, val TEXT);
5857
CREATE PUBLICATION pub FOR TABLE mytable;
5958
```
60-
2. Insert a sample row into the table. This ensures there's data to test the replication with.
59+
2. Insert a sample row into the table. This ensures that there is data to test the replication with.
6160
```sql
6261
INSERT INTO mytable VALUES (1, 'foo');
6362
```

0 commit comments

Comments
 (0)