aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/udfs/common/hyperloglog/test/cases/Basic.sql
blob: b092c781271c947261382fb37f305529407de6e1 (plain) (blame)
1
2
3
4
5
6
7
/* syntax version 1 */
SELECT
    HyperLogLog(key) AS str,
    CountDistinctEstimate(CAST(subkey AS Double)) AS `double`,
    HLL(CAST(value AS Int64), 18) AS `int`
FROM Input;