Hi,
I am facing the issue when connecting with the Dremio and Hadoop. Queries which are running correct in Drill is not running in Dremio.
Conditional Statement query in Dremio, example below in Hadoop-drill work and fail in Dremio:
CASE [conditionalvalue]=‘ABC’
WHEN [DoB] <= 4 then ‘1’
WHEN [DoB] <= 3 then ‘2’
WHEN [DoB] > 3 then ‘3’
ELSE ‘-’
END
Error:
Cannot apply ‘<=’ to arguments of type ’ <= '. Supported form(s): ‘<COMPARABLE_TYPE> <= <COMPARABLE_TYPE>’