Open
Description
An issue's been reported through support with the syntax of one of the queries:
Hey, I noticed that the interpolated query in the examples is incorrect (Bad usage of paratheses)
ORIGINAL:COALESCE(temperature,(prev_temp + next_temp)) / 2 AS interpolated_temperature
UPDATED:COALESCE(temperature,(prev_temp + next_temp) / 2) AS interpolated_temperature
Find this and fix it if possible.