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
Under some rare circumstances, it appears postgres will modify the contents of the nulls array. Multicorn assumes that's not the case and will dump core. The patch below fixes the problem.
I was not able to find where postgres was modifying the array. But I had crashes that went away with this change, came back when I removed it, and went away again when I put it back. Not 100% conclusive given the nature of the crash. But pretty close.
Under some rare circumstances, it appears postgres will modify the contents of the nulls array. Multicorn assumes that's not the case and will dump core. The patch below fixes the problem.
I was not able to find where postgres was modifying the array. But I had crashes that went away with this change, came back when I removed it, and went away again when I put it back. Not 100% conclusive given the nature of the crash. But pretty close.
diff --git a/src/python.c b/src/python.c
index 394236f..f63445b 100644
--- a/src/python.c
+++ b/src/python.c
@@ -1210,6 +1210,8 @@ pythonDictToTuple(PyObject *p_value,
The text was updated successfully, but these errors were encountered: