File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " strontium" ,
3
- "version" : " 2.9.8 " ,
3
+ "version" : " 2.9.9 " ,
4
4
"description" : " Strontium is a TypeScript toolkit for High Performance API servers built for Production not Projects." ,
5
5
"main" : " lib/src/index.js" ,
6
6
"types" : " lib/src/index.d.ts" ,
Original file line number Diff line number Diff line change 4
4
MySQLStore ,
5
5
MySQLTransaction ,
6
6
PGStore ,
7
+ PGTransaction ,
7
8
SQLStore ,
8
9
} from "../../../datastore"
9
10
import { injectable } from "inversify"
@@ -37,7 +38,7 @@ export abstract class TableRepository<
37
38
) {
38
39
super ( )
39
40
40
- if ( store instanceof PGStore ) {
41
+ if ( store instanceof PGStore || store instanceof PGTransaction ) {
41
42
this . postProcessor = pgQueryPostProcessor
42
43
this . tableName = `"${ this . tableName } "`
43
44
}
You can’t perform that action at this time.
0 commit comments