Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_18.sql
blob: d24e6dc3035b9ffe31ac1527526403e8b4b7452a [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
dfs
.
tmp
.
temp_tbl_18 PARTITION
BY
(
col_int
)
AS
SELECT
col_int
,
count
(*)
FROM
typeall_l
GROUP
BY
col_int
;
SELECT
*
FROM
dfs
.
tmp
.
temp_tbl_18
;
DROP
TABLE
dfs
.
tmp
.
temp_tbl_18
;