-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
avoid returning empty MySQLWarnings in odd edge case scenario #555
Conversation
Makes sense to me, but it would be nice if you could provide us an example for the edge case, so we can use it as a regression test. Moreover, without an entry to the AUTHORS file we can not merge anything. |
280dff6
to
45bedc4
Compare
Please keep the name list on AUTHORS in alphabetical order. Can you also provide details about the edge case? |
@@ -49,6 +49,7 @@ Xiangyu Hu <xiangyu.hu at outlook.com> | |||
Xiaobing Jiang <s7v7nislands at gmail.com> | |||
Xiuming Chen <cc at cxm.cc> | |||
Zhenye Xie <xiezhenye at gmail.com> | |||
Ruben de Vries <ruben at rubensayshi.com> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please keep the name list in alphabetical order
@julienschmidt I think I managed to figure out when it occurs
execute these 2 with I've been trying to look at the handling of the msgs from mysql, when loading the fixtures:
see the I'm not really sure what this code is supposed to do, how it works, just debugging, I hope you understand this stuff a little better xD obviously this ain't the correct fix, but doing |
ping @julienschmidt |
closing this, in favor of #602 |
Description
Was running into a weird edge case where the first 'row' was already EOF and result was empty
MySQLWarnings{}
when instrict=true
mode.Unfortunately unable to figure out what is really going on or reproduce it in isolation from main project.
Checklist