-
Environment
IssueI am trying to connect to an Azure Synapse database, using the following code snippet:
The expected output would be a successful connection to the database and for the code to continue executing.
For extra information, I've run some commands I've seen referenced in other threads:
Any help will be greatly appreciated |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 25 replies
-
Determine where the segfault is happening using gdb. Please don't double-post, I already replied you in the other thread. |
Beta Was this translation helpful? Give feedback.
-
FWIW, I am unable to reproduce your issue. As mentioned in other threads, output from |
Beta Was this translation helpful? Give feedback.
-
I have the same problem. Environment |
Beta Was this translation helpful? Give feedback.
-
@kklein - Does the segfault occur immediately upon executing |
Beta Was this translation helpful? Give feedback.
-
Remove/rename /opt/conda/envs/hf2/lib/python3.10/site-packages/../../libodbc.so.2 and see if it works. |
Beta Was this translation helpful? Give feedback.
I found what makes the difference: Downgrading
libgcc-ng
from 13.0.1 to 12.0.1 makes the segfault disappear! Pinning it looks like a feasible solution for me (for now). Thanks a lot for your help and patience.