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
Please answer these questions before submitting your issue. Thanks!
mysql root@127.0.0.1:test> SELECT CAST('125e342.83' AS signed); +------------------------------+ | CAST('125e342.83' AS signed) | +------------------------------+ | -1 | +------------------------------+ 1 row in set Time: 0.006s mysql root@127.0.0.1:test> SELECT CAST('125e342.83' AS signed); +------------------------------+ | CAST('125e342.83' AS signed) | +------------------------------+ | -1 | +------------------------------+ 1 row in set Time: 0.006s
In MySQL
mysql root@127.0.0.1:test> SELECT convert('125e342.83' , signed); +--------------------------------+ | convert('125e342.83' , signed) | +--------------------------------+ | 125 | +--------------------------------+ 1 row in set Time: 0.007s mysql root@127.0.0.1:test> SELECT CAST('125e342.83' AS signed); +------------------------------+ | CAST('125e342.83' AS signed) | +------------------------------+ | 125 | +------------------------------+
The text was updated successfully, but these errors were encountered:
nice catch! how did you find it?
Sorry, something went wrong.
when I try to do this issue...#7390
👍
No branches or pull requests
Please answer these questions before submitting your issue. Thanks!
If possible, provide a recipe for reproducing the error.
In TiDB
In MySQL
The text was updated successfully, but these errors were encountered: