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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to