[misc] various small corrections

* code simplification
* correct missing parameters
* coherence
* removing deprecated use
This commit is contained in:
rusher
2024-02-28 12:06:04 +01:00
parent 623a9ab231
commit 7569425955
33 changed files with 82 additions and 98 deletions

View File

@ -352,7 +352,7 @@ async function testPool(): Promise<void> {
await connection.execute('SELECT 1 + 1 AS solution');
await connection.execute('SELECT 1 + ? AS solution', [1]);
connection.release();
await connection.release();
}
async function testPoolCluster(): Promise<void> {