Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
0.9.52
-
None
Description
I created a cursor as follows:
cursor = conn.cursor(cursor_type=mariadb.CURSOR_TYPE_READ_ONLY)
And then used the cursor to execute a few INSERT statements. Following those, an attempt to do a SELECT caused a segmentation fault.
If I avoid the INSERT statements, the SELECT works fine with CURSOR_TYPE_READ_ONLY set.