Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Sep 12, 2024
1 parent 55a0436 commit 5b1522c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/queries/clickbench/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ LIMIT 10;
**Important Query Properties**: MEDIAN, approx_percentile_cont functions, high cardinality grouping (17.5M unique users)

```sql
SELECT MIN("ResponseStartTiming") tmin, MEDIAN("ResponseStartTiming") tmed, approx_percentile_cont("ResponseStartTiming", 0.95) tp95, approx_percentile_cont("ResponseStartTiming", 0.95) tp99, MAX("ResponseStartTiming") tmax, "UserID"
SELECT MIN("ResponseStartTiming") tmin, MEDIAN("ResponseStartTiming") tmed, approx_percentile_cont("ResponseStartTiming", 0.95) tp95, approx_percentile_cont("ResponseStartTiming", 0.99) tp99, MAX("ResponseStartTiming") tmax, "UserID"
FROM 'hits.parquet'
GROUP BY "UserID"
HAVING tmin > 0 AND tmed > 0
Expand Down

0 comments on commit 5b1522c

Please sign in to comment.