You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
calling function callProcedure on an open connection ends with a Segmentation fault. We've also tried with a prepared statement and the call to the same procedure works. Our procedure take only a varchar as a INOUT parameter. We've try with a char(500) as an IN parameter and a second OUT parameter, but the segmentation fault still appears. The input parameter is JSON string and we're expecting to retrieve a JSON object as string from the INOUT parameter.
the connection used is obtained from a pool
Expected behavior
no segmentation fault occurs when using the callProcedure function
To Reproduce
Steps to reproduce the behavior:
Connect to database with options '...'
Create database table '...'
Run query '...'
Code
we used the following code to reproduce the issue
Describe your system
odbc
Package Version: 2.4.8Describe the bug
calling function
callProcedure
on an open connection ends with a Segmentation fault. We've also tried with a prepared statement and the call to the same procedure works. Our procedure take only a varchar as a INOUT parameter. We've try with a char(500) as an IN parameter and a second OUT parameter, but the segmentation fault still appears. The input parameter is JSON string and we're expecting to retrieve a JSON object as string from the INOUT parameter.the connection used is obtained from a pool
Expected behavior
no segmentation fault occurs when using the
callProcedure
functionTo Reproduce
Steps to reproduce the behavior:
Code
we used the following code to reproduce the issue
Additional context
the application runs into a docker container with node-22-slim as base image
The text was updated successfully, but these errors were encountered: