-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix signatures II #143
Fix signatures II #143
Conversation
119d5ed
to
e9630f0
Compare
e9630f0
to
f3b7196
Compare
Explicit type MYSQL_ROW_OFFSET is important - as exactly this type is required as argument for coupled function seekRowOffset.
Replacement is RowIndex_t which is more specific and no longer private.
Function sendLongData was misleading, as it implied return of some form of error code.
f3b7196
to
e8f7b2e
Compare
I've encounter issues with obsolete mysql 5.7 image used for testing. I've tested that modern images mariadb:10.3.39-focal and mysql:8.0.39-debian work correctly, but choosing which way we'll go is left for future work. Please review the relevant commit before merge. |
Upgrade implicit image from mysql 5.7 to 8.0, allow customization via TEST_MYSQL_DOCKER_IMAGE environment variable.
e8f7b2e
to
666051f
Compare
We've had an internal team discussion, the plan is to go ahead and upgrade the image to modern mysql. I've added an experimental customization option, the environmental variable |
Continues #70