sql/moz-fx-data-shared-prod/udf/histogram_percentiles/udf.sql (6 lines of code) (raw):
-- Legacy wrapper around a function moved to mozfun.
CREATE OR REPLACE FUNCTION udf.histogram_percentiles(
histogram ANY TYPE,
percentiles ARRAY<FLOAT64>
) AS (
mozfun.hist.percentiles(histogram, percentiles)
);