Skip to content

Commit b1ab74c

Browse files
committed
missing ;
1 parent c184d51 commit b1ab74c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Failure to secure these ports may expose sensitive database information!
3939
Create a new DB user in database to be monitored (skip this if you want just to check out `postgres_ai` monitoring with a synthetic `demo` database):
4040
```sql
4141
-- Create a user for Postgres AI monitoring
42-
begin
42+
begin;
4343
create user postgres_ai_mon with password '<password>';
4444

4545
grant connect on database <database_name> to postgres_ai_mon;
@@ -66,7 +66,7 @@ where a.attnum > 0 and not a.attisdropped;
6666

6767
grant select on public.pg_statistic to pg_monitor;
6868
alter user postgres_ai_mon set search_path = "$user", public, pg_catalog;
69-
commit
69+
commit;
7070
```
7171

7272
**One command setup:**

0 commit comments

Comments
 (0)