You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I decided to use CAST in a query Sequeler is claiming it doesn't exist, this is clearly wrong. Cast is a perfectly valid function in MySQL/MariaDB and many others.
To reproduce simply add a cast to ones query the one below will do it, connect to a mysql/mariadb database. To get the error that is the title of this bug don't select a database, MySQL/MariaDB will execute it without needing one.
SELECT CAST(now() AS DATE);
If you have selected a database you'll get the following error which is also wrong:
Incorrect parameters in the call to stored function 'CAST'
The text was updated successfully, but these errors were encountered:
So I decided to use CAST in a query Sequeler is claiming it doesn't exist, this is clearly wrong. Cast is a perfectly valid function in MySQL/MariaDB and many others.
To reproduce simply add a cast to ones query the one below will do it, connect to a mysql/mariadb database. To get the error that is the title of this bug don't select a database, MySQL/MariaDB will execute it without needing one.
If you have selected a database you'll get the following error which is also wrong:
Incorrect parameters in the call to stored function 'CAST'
The text was updated successfully, but these errors were encountered: