We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4d42e2 commit 9d20735Copy full SHA for 9d20735
src/datastore/drivers/pg/PGStore.ts
@@ -52,7 +52,7 @@ export class PGStore implements Process, SQLStore {
52
case PGIsolationLevel.SERIALIZABLE:
53
query = "BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE"
54
case PGIsolationLevel.REPEATABLE_READ:
55
- query = "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE_READ"
+ query = "BEGIN TRANSACTION ISOLATION LEVEL REPEATABLE READ"
56
case PGIsolationLevel.READ_COMMITED:
57
query = "BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED"
58
case PGIsolationLevel.READ_UNCOMMITED:
0 commit comments