Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_13.sql
blob: de914a0c3e87d995ba2c661e41dd8f1a4c0f4319 [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
dfs
.
tmp
.
temp_tbl_13 PARTITION
BY
(
col_chr
)
AS
SELECT
*
FROM
typeall_l
ORDER
BY
col_int LIMIT
1
;
SELECT
COUNT
(*)
FROM
dfs
.
tmp
.
temp_tbl_13
;
DROP
TABLE
dfs
.
tmp
.
temp_tbl_13
;