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
selecte.instance_id-- this next one is fine
, percentile_cont(0.75) within group (order bye.running_time) /1000.0as p75_time
-- this is also fine
, avg(e.running_time) filter (wheree.error='') /1000.0as avg_success_time
-- this one causes a parse error
, percentile_cont(0.75) within group (order bye.running_time) filter (wheree.error='') /1000.0as p75_success_time
from execution e
group by1
The text was updated successfully, but these errors were encountered:
Here is a minimally reproducing query:
The text was updated successfully, but these errors were encountered: