metatron-discovery icon indicating copy to clipboard operation
metatron-discovery copied to clipboard

Support deduplication of multi-value dimension for group by

Open navis opened this issue 3 years ago • 0 comments

    testQuery(
        "SELECT bks_event_d0, count(*) as cnt FROM cdis GROUP BY bks_event_d0",
        new Object[]{"APP", 4L},
        new Object[]{"T114", 4L}
    );
    testQuery(
        "SELECT dedup(bks_event_d0), count(*) as cnt FROM cdis GROUP BY dedup(bks_event_d0)",
        new Object[]{"APP", 2L},
        new Object[]{"T114", 2L}
    );

navis avatar Jan 26 '22 07:01 navis