File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @devrev/meerkat-dbm" ,
3
- "version" : " 0.0.161 " ,
3
+ "version" : " 0.0.162 " ,
4
4
"dependencies" : {
5
5
"tslib" : " ^2.3.0" ,
6
6
"@duckdb/duckdb-wasm" : " ^1.28.0" ,
Original file line number Diff line number Diff line change @@ -264,7 +264,9 @@ export class DBM {
264
264
/**
265
265
* Lock the tables
266
266
*/
267
- this . lockTables ( this . currentQueryItem . tables . map ( ( table ) => table . name ) ) ;
267
+ await this . lockTables (
268
+ this . currentQueryItem . tables . map ( ( table ) => table . name )
269
+ ) ;
268
270
269
271
const startTime = Date . now ( ) ;
270
272
this . logger . debug (
@@ -313,7 +315,7 @@ export class DBM {
313
315
/**
314
316
* Unlock the tables
315
317
*/
316
- this . unlockTables (
318
+ await this . unlockTables (
317
319
this . currentQueryItem . tables . map ( ( table ) => table . name )
318
320
) ;
319
321
}
You can’t perform that action at this time.
0 commit comments