-
Notifications
You must be signed in to change notification settings - Fork 439
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
[Feedback] Tedious v2.1.0 release #636
Comments
As we already know that deployments to Azure for applications using |
Is there an issue with using Tedious on a table with more than 130 columns? When Tedious 2.1.1 is being used via Sequelize, I am getting "RangeError: Maximum call stack size exceeded". |
@jdownhower Do you get RangeError with |
@v-suhame I created an isolated test case and put it in this repository, so hopefully it is reproducible. It also includes the detailed error (output.txt). Hope this is helpful. |
@jdownhower Thanks for the repo! This issue is due to nested callbacks in the driver, it is a known one (#512), @arthurschreiber was working on a fix, maybe he can give more details. Workaround for now would be to decrease the packet-size of message, default packet size is |
@v-suhame Thank you! I was able to use the Sequelize dialectOptions to pass the new packetSize value to Tedious as a workaround. |
@jdownhower As @v-suhame correctly said, the issue is with a recursive code path in the current TDS packet parser. We hope to tackle this issue in the future! 😄 |
I just tagged |
[email protected]
was released to thetedious@next
pre-release channel.If you want to test this new version, you can install it via
npm install tedious@next
ornpm install [email protected]
.We plan to keep this new release in the
next
channel for at least a week, to gather feedback and gain confidence, before releasing this version to thelatest
channel. Please let us know if you run into any issues.Changes since
[email protected]
Bug Fixes
Features
Known Issues
sspi-client
dependency.The text was updated successfully, but these errors were encountered: