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
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
SELECT DATE(`calcs`.`date2`) AS `TEMP(Test)(3817907367)(0)` FROM `calcs` GROUP BY DATE(`calcs`.`date2`)
returns the following error while using new engine.
{
"error": {
"type": "IllegalStateException",
"reason": "Unsupported type DATE to construct expression value from object for field: DATE(calcs.date2), value: 1972-07-12.",
"details": "Unsupported type DATE to construct expression value from object for field: DATE(calcs.date2), value: 1972-07-12."
},
"status": 503
}
After modifying the query to
SELECT DATE(`calcs`.`date2`) AS `TEMP(Test)(3817907367)(0)` FROM `calcs` GROUP BY `calcs`.`date2`
The query
returns the following error while using new engine.
After modifying the query to
got the successful response as below.
The text was updated successfully, but these errors were encountered: