Skip to content

Commit

Permalink
fix: PromisePoolCluster.of returns PromisePoolCluster instead of Pool…
Browse files Browse the repository at this point in the history
…Namespace (#3091)
  • Loading branch information
jcmartineztiempo committed Dec 11, 2024
1 parent 526cb33 commit 6ae2689
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/esm/integration/pool-cluster/test-promise-wrapper.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,16 @@ const { createPoolCluster } = require('../../../../promise.js');
assert.ok(connection, 'should get connection');
connection.release();

const [result] = await poolNamespace.query('SELECT 1 as a where 1 = ?', [
1,
]);
const [result] = await poolNamespace.query(
'SELECT 1 as a from dual where 1 = ?',
[1],
);
assert.equal(result[0]['a'], 1, 'should query successfully');

const [result2] = await poolNamespace.execute('SELECT 1 as a where 1 = ?', [
1,
]);
const [result2] = await poolNamespace.execute(
'SELECT 1 as a from dual where 1 = ?',
[1],
);
assert.equal(result2[0]['a'], 1, 'should execute successfully');

poolCluster.end();
Expand Down

0 comments on commit 6ae2689

Please sign in to comment.