We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently ProxySQL returns the value of SELECT LAST_INSERT_ID() as string MYSQL_TYPE_VAR_STRING , while should be time MYSQL_TYPE_LONGLONG .
SELECT LAST_INSERT_ID()
MYSQL_TYPE_VAR_STRING
MYSQL_TYPE_LONGLONG
That is ok for a lot of client libraries, but some client libraries do not like that. Also, default charset should be binary
binary
The text was updated successfully, but these errors were encountered:
Bug fixes related to LAST_INSERT_ID()
56eff07
* 64 bits LAST_INSERT_ID() #1090 * return LAST_INSERT_ID() as type LONGLONG #1092 * set charset as `binary` #1092
5389f44
Fixed in 1.3.9 and 1.4.1
Sorry, something went wrong.
renecannao
No branches or pull requests
Currently ProxySQL returns the value of
SELECT LAST_INSERT_ID()
as stringMYSQL_TYPE_VAR_STRING
, while should be timeMYSQL_TYPE_LONGLONG
.That is ok for a lot of client libraries, but some client libraries do not like that.
Also, default charset should be
binary
The text was updated successfully, but these errors were encountered: