Skip to content

Commit 9c1c30c

Browse files
committed
Fix breakages
1 parent bb6a2ee commit 9c1c30c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/njs/src/njsConnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ void Connection::Async_Execute (uv_work_t *req)
718718
}
719719
else
720720
{
721-
executeBaton->dpistmt->execute(executeBaton->isAutoCommit);
721+
executeBaton->dpistmt->execute(1, executeBaton->isAutoCommit);
722722
executeBaton->rowsAffected = executeBaton->dpistmt->rowsAffected();
723723

724724
/* Process date/timestamp INOUT/OUT bind values */

src/njs/src/njsOracle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ Handle<Value> Oracledb::CreatePool (const Arguments &args)
648648
NJS_GET_UINT_FROM_JSON ( poolBaton->stmtCacheSize, poolBaton->error,
649649
poolProps, "stmtCacheSize", 0, exitCreatePool );
650650
NJS_GET_BOOL_FROM_JSON ( poolBaton->isExternalAuth, poolBaton->error,
651-
poolProps, "isExternalAuth", 0, exitGetConnection );
651+
poolProps, "isExternalAuth", 0, exitCreatePool );
652652

653653
poolBaton->oracledb = oracledb;
654654
poolBaton->dpienv = oracledb->dpienv_;

0 commit comments

Comments
 (0)