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
Copy file name to clipboardExpand all lines: README.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -484,10 +484,9 @@ st_pivot_table(
484
484
485
485
**Auto thresholds:** In `"auto"` mode, server-side pre-aggregation activates when the dataset has at least 100K rows (high-cardinality layouts) or 250K rows (moderate layouts) and the estimated pivot shape exceeds the client-side comfort budget.
486
486
487
-
**Supported aggregations:**`sum`, `count`, `min`, `max`, and `avg`. Configs using other aggregations (e.g. `median`, `count_distinct`) fall back to client-side computation automatically.
487
+
**Supported aggregations:**All 10 aggregation types are supported in hybrid mode. `count` and `count_distinct` work on any column type; all other aggregations (`sum`, `avg`, `min`, `max`, `median`, `percentile_90`, `first`, `last`) coerce values to numeric and ignore non-numeric entries, consistent with client-only mode behavior. For non-decomposable aggregations (`avg`, `count_distinct`, `median`, `percentile_90`, `first`, `last`), the server computes correct totals and subtotals via a sidecar payload, ensuring accuracy that client-side re-aggregation alone cannot provide.
488
488
489
489
**Limitations:**
490
-
- Drill-down is disabled in hybrid mode because values are pre-aggregated on the server rather than built from raw rows.
491
490
- Synthetic measures are not supported in hybrid mode (falls back to client-side).
0 commit comments