Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_13_b.sql
blob: cab11b0c45b4c90ba50e5c06cb4c18e7c7a1a91b [
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
100
;
SELECT
COUNT
(*)
FROM
dfs
.
tmp
.
temp_tbl_13
;
DROP
TABLE
dfs
.
tmp
.
temp_tbl_13
;