alamb commented on issue #15927:
URL: https://github.com/apache/datafusion/issues/15927#issuecomment-2847981986
I believe the correct syntax is
```sql
> SELECT "ClientIP", "WatchID", COUNT(*) c, MIN("ResponseStartTiming")
tmin, APPROX_PERCENTILE_CONT(0.95) WITHIN GROUP (ORDER BY
"ResponseStartTiming") tp95, MAX("ResponseStartTiming") tmax
FROM 'hits.parquet'
WHERE "JavaEnable" = 0 -- filters to 32M of 100M rows
GROUP BY "ClientIP", "WatchID"
HAVING c > 1
ORDER BY tp95 DESC
LIMIT 10;
```
I will verify and then update the query
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]