Skip to content

Commit 8b3d0fe

Browse files
committed
fix: add missing await
1 parent ddb921c commit 8b3d0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/variables.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,7 @@ export abstract class Variable {
15661566
}
15671567

15681568
async oidOutputFunctionCall(funcOid: string | number, datum: string) {
1569-
this.checkCanAlloc();
1569+
await this.checkCanAlloc();
15701570

15711571
if (this.context.hasOidOutputFunctionCall) {
15721572
try {

0 commit comments

Comments
 (0)