Skip to content

Commit 9d20735

Browse files
author
Felix Robles
committed
fix repeatable read
1 parent f4d42e2 commit 9d20735

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/datastore/drivers/pg/PGStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export class PGStore implements Process, SQLStore {
5252
case PGIsolationLevel.SERIALIZABLE:
5353
query = "BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE"
5454
case PGIsolationLevel.REPEATABLE_READ:
55-
query = "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE_READ"
55+
query = "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ"
5656
case PGIsolationLevel.READ_COMMITED:
5757
query = "BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED"
5858
case PGIsolationLevel.READ_UNCOMMITED:

0 commit comments

Comments
 (0)