Skip to content

Commit 2de8661

Browse files
committed
Fix segfault using connectionClass with standalone connections (ODPI-C fix)
1 parent f28bded commit 2de8661

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitmodules

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "odpi"]
22
path = odpi
33
url = ../odpi.git
4+
branch = v3.2.x

test/connectionClass.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describe('221. connectionClass.js', () => {
5151
}
5252
}); // 221.1
5353

54-
it.skip('221.2 set the property when using a standalone connection', async () => {
54+
it('221.2 set the property when using a standalone connection', async () => {
5555
try {
5656
oracledb.connectionClass = 'NODB_TEST';
5757
const conn = await oracledb.getConnection(dbconfig);
@@ -61,4 +61,4 @@ describe('221. connectionClass.js', () => {
6161
should.not.exist(err);
6262
}
6363
}); // 221.2
64-
});
64+
});

0 commit comments

Comments
 (0)