Bug when using mariadb v11.4 ? #723
Replies: 1 comment
-
Nevermind, I found the problem. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Describe the bug
I have about a dozen pytests that work fine on mariadb v10.11.9 and earlier, but that break when upgrading to mariadb v11.4.
It concerns a traditional python / django web application, and the queries being executed a rather trivial (plain old SELECT with basic WHERE and LIMIT clauses).
On the application side, I see this traceback:
On the mariadb side, I see these in the error logs for each failed query:
I've tried to debug this from many angles, tried to find bug reports in any relevant libraries, but nothing turns up.
What I learned so far is that errno 71 means "protocol error".
Any idea what might be going on here?
Environment
MariaDB v11.4.3
Ubuntu 24.04 LTS
Python 3.12
Django v5.1.1
mysqlclient v2.2.4
How did you install libmysqlclient libraries?
apt install libmysqlclient-dev
What version of mysqlclient do you use?
2.2.4
Docker command to start MySQL server
No response
Minimum but complete code to reproduce
Schema and initial data required to reproduce.
Commands, and any other step required to reproduce your issue.
No response
Beta Was this translation helpful? Give feedback.
All reactions