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
doesn't work ("error": "expected one argument for PERCENTILE()"):
select PERCENTILE(value, 95) from foo
there seems to be quite a few places in the code that compare to the lowercase version of Call.Name. would it be better to normalize Call.Name to be lowercase when it's created or even to store the original as well as a normalized?
The text was updated successfully, but these errors were encountered:
All functions should be case-insenstive. It's on our list to do, but we need to look into solving it at a global level (perhaps at the parser or scanner level) and try to avoid fixing it for individual functions if possible.
works:
doesn't work (
"error": "expected one argument for PERCENTILE()")
:there seems to be quite a few places in the code that compare to the lowercase version of
Call.Name
. would it be better to normalizeCall.Name
to be lowercase when it's created or even to store the original as well as a normalized?The text was updated successfully, but these errors were encountered: