From 1a0ebb1021b84a8a1ed88d8dc34479f335c0ce03 Mon Sep 17 00:00:00 2001 From: Chris Eubank <108756251+christianeu-db@users.noreply.github.com> Date: Mon, 14 Sep 2026 17:13:37 +0000 Subject: [PATCH] docs(core-spec): align PERCENTILE_CONT tool-mapping example with its documented syntax The Tool Mappings table showed a positional PERCENTILE_CONT(x, 0.75) in the Ossie Standard column, conflicting with the normative REQUIRED definition PERCENTILE_CONT(p) WITHIN GROUP (ORDER BY expr). Correct the illustrative cell to match the normative definition. Documentation consistency only; no normative change. Co-authored-by: Isaac --- core-spec/expression_language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core-spec/expression_language.md b/core-spec/expression_language.md index 617aeefd..5801bed2 100644 --- a/core-spec/expression_language.md +++ b/core-spec/expression_language.md @@ -694,7 +694,7 @@ This section maps Ossie standard functions to their equivalents in popular BI to | `STDDEV_POP(x)` | `STDEVP(x)` | `STDDEV(X)` | `STDEV.P(x)` | N/A | | `VARIANCE(x)` | `VAR(x)` | `VARIANCE(X)` | `VAR.S(x)` | `Variance(x)` | | `MEDIAN(x)` | `MEDIAN(x)` | `MEDIAN(X)` | `MEDIAN(x)` | `Median(x)` | -| `PERCENTILE_CONT(x, 0.75)` | `PERCENTILE(x, 0.75)` | `PERCENTILE(X, 75)` | `PERCENTILE.INC(x, 0.75)` | `Percentile(x, 0.75)` | +| `PERCENTILE_CONT(0.75) WITHIN GROUP (ORDER BY x)` | `PERCENTILE(x, 0.75)` | `PERCENTILE(X, 75)` | `PERCENTILE.INC(x, 0.75)` | `Percentile(x, 0.75)` | ### Date Function Mapping