Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_06_a.sql
blob: c67e858e38c217d7062d9422e1171566a0a0cd4f [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
temp_tbl_06 PARTITION
BY
(
col_chr
)
AS
SELECT
*
FROM
typeall_l
;
SELECT
DISTINCT
col_chr
FROM
temp_tbl_06
;
DROP
TABLE
temp_tbl_06
;