blob: 07726c932562e15c838a4da2590878799cb6dc78 [file] [log] [blame]
select tinyint_col, count(*)
from functional.alltypesagg
group by 1
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
04:EXCHANGE [UNPARTITIONED]
|
03:AGGREGATE [FINALIZE]
| output: count:merge(*)
| group by: tinyint_col
|
02:EXCHANGE [HASH(tinyint_col)]
|
01:AGGREGATE
| output: count(*)
| group by: tinyint_col
|
00:SCAN HDFS [functional.alltypesagg]
partitions=11/11 files=11 size=814.73KB
====
select count(distinct id)
from functional.alltypesagg
---- DISTRIBUTEDPLAN
PLAN-ROOT SINK
|
06:AGGREGATE [FINALIZE]
| output: count:merge(id)
|
05:EXCHANGE [UNPARTITIONED]
|
02:AGGREGATE
| output: count(id)
|
04:AGGREGATE
| group by: id
|
03:EXCHANGE [HASH(id)]
|
01:AGGREGATE
| group by: id
|
00:SCAN HDFS [functional.alltypesagg]
partitions=11/11 files=11 size=814.73KB
====