-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
oracledb v6.2.0 parses multi-line comment into extra bind vars #1625
Labels
Comments
Thanks for the report. |
We have identified the issue and working on a fix. |
@jameschenjav Please apply the following patch in
|
thanks. it's working now |
sharadraju
added a commit
that referenced
this issue
Nov 22, 2023
This has been fixed as part of the 6.3 release. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oracle DB 21c XE
An error. I have tried v6.1.0 and it works without a problem.
processBindParams(buf, params) { const bindVars = []; const nonReturningParams = []; for (const bindInfo of params) { if (!bindInfo.isReturnBind) { nonReturningParams.push(bindInfo); } bindVars.push(bindInfo.bindVar); } + console.log(params, bindVars); // added on line 610, see the log below this.writeColumnMetadata(buf, bindVars); return nonReturningParams; }
It looks like it parsed the comment into bind vars (with regex?):
The text was updated successfully, but these errors were encountered: