Tried example from databricks doc https://docs.databricks.com/sql/language-manual/functions/hll_sketch_agg.html
%sql
SELECT hll_sketch_estimate(hll_sketch_agg(col, 12)) FROM VALUES (1), (1), (2), (2), (3) tab(col);
it fails with
AnalysisException: Undefined function: hll_sketch_estimate. This function is neither a built-in/temporary function, nor a persistent function that is qualified as spark_catalog.default.hll_sketch_estimate.; line 1 pos 7
How to execute hll functions from notebook?