From becf7777ef35fffbfffd9e4fceacadb22899b47d Mon Sep 17 00:00:00 2001 From: Ciro Spaciari Date: Mon, 8 Sep 2025 21:49:07 -0700 Subject: [PATCH] test --- src/js/internal/sql/mysql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/internal/sql/mysql.ts b/src/js/internal/sql/mysql.ts index ac50d14e5a..935effb7a8 100644 --- a/src/js/internal/sql/mysql.ts +++ b/src/js/internal/sql/mysql.ts @@ -383,7 +383,7 @@ class PooledMySQLConnection { this.connection = null; this.adapter.readyConnections.delete(this); const queries = new Set(this.queries); - this.queries?.clear?.(); + this.queries.clear(); this.queryCount = 0; this.flags &= ~PooledConnectionFlags.reserved; const connectionInfo = this.connectionInfo;