File tree Expand file tree Collapse file tree 1 file changed +15
-15
lines changed
crates/pgt_test_utils/testdb_migrations Expand file tree Collapse file tree 1 file changed +15
-15
lines changed Original file line number Diff line number Diff line change 1
1
do $$
2
2
begin
3
3
4
- -- begin
5
- -- create role owner superuser createdb login bypassrls;
6
- -- exception when duplicate_object then
7
- -- null;
8
- -- end;
4
+ begin
5
+ create role owner superuser createdb login bypassrls;
6
+ exception when duplicate_object then
7
+ null ;
8
+ end;
9
9
10
- -- begin
11
- -- create role test_login login;
12
- -- exception when duplicate_object then
13
- -- null;
14
- -- end;
10
+ begin
11
+ create role test_login login;
12
+ exception when duplicate_object then
13
+ null ;
14
+ end;
15
15
16
- -- begin
17
- -- create role test_nologin;
18
- -- exception when duplicate_object then
19
- -- null;
20
- -- end;
16
+ begin
17
+ create role test_nologin;
18
+ exception when duplicate_object then
19
+ null ;
20
+ end;
21
21
22
22
end
23
23
$$;
You can’t perform that action at this time.
0 commit comments