Skip to content

Commit

Permalink
a couple fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
arlen22 committed Jan 10, 2025
1 parent d67efba commit 980bbbc
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 91 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ function SqlEngineWorker(options) {
return;
}
case "finalize": {
this.statements[sql].finalize();
if(this.statements[sql].finalize)
this.statements[sql].finalize();
delete this.statements[sql];
parentPort.postMessage({messageId});
return;
Expand Down
Loading

0 comments on commit 980bbbc

Please sign in to comment.