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
I'm not sure this is considered a bug, but I find it pretty strange that things like expm1('-') and sleep('a') aren't errors.
expm1('-')
sleep('a')
I suppose this is so you can do things like 'a' + 1 without having to write char(int(a) + 1)?
'a' + 1
char(int(a) + 1)
The text was updated successfully, but these errors were encountered:
I think this is a dup of #5844
Sorry, something went wrong.
Oh, looks like it.
I suppose this is another vote in favor of that change.
No branches or pull requests
I'm not sure this is considered a bug, but I find it pretty strange that things like
expm1('-')
andsleep('a')
aren't errors.I suppose this is so you can do things like
'a' + 1
without having to writechar(int(a) + 1)
?The text was updated successfully, but these errors were encountered: