File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ select count(*) as should_be_1 from hs1;
4949(1 row)
5050
5151end;
52- begin transaction isolation level serializable ;
52+ begin transaction isolation level repeatable read ;
5353select count(*) as should_be_1 from hs1;
5454 should_be_1
5555-------------
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ unlisten *;
124124ERROR: cannot execute UNLISTEN during recovery
125125-- disallowed commands
126126ANALYZE hs1;
127- ERROR: cannot execute VACUUM during recovery
127+ ERROR: cannot execute ANALYZE during recovery
128128VACUUM hs2;
129129ERROR: cannot execute VACUUM during recovery
130130CLUSTER hs2 using hs1_pkey;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ begin transaction read only;
2828select count (* ) as should_be_1 from hs1;
2929end;
3030
31- begin transaction isolation level serializable ;
31+ begin transaction isolation level repeatable read ;
3232select count (* ) as should_be_1 from hs1;
3333select count (* ) as should_be_1 from hs1;
3434select count (* ) as should_be_1 from hs1;
You can’t perform that action at this time.
0 commit comments