Sign in
◑
Theme
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
limit0
/
aggregates
/
aggregate
/
data
/
aggregate9.q
blob: b791078d80b8eea891fcc53abb430d0cb6f50471 [
file
]
select
cast
(
c_groupby
as
varchar
(
4
)),
max
(
distinct
(
cast
(
c_int
as
int
))),
max
(
distinct
(
cast
(
c_bigint
as
bigint
))),
max
(
distinct
(
cast
(
c_float4
as
float
))),
max
(
distinct
(
cast
(
c_float8
as
double
)))
from
data
group
by
c_groupby
;