Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_02.sql
blob: ed71794f965b657c630099c8fe1fd9af6c65ee96 [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
temp_tbl_02 PARTITION
BY
(
col_int
)
AS
SELECT
*
FROM
typeall_l
;
SELECT
col_int
FROM
temp_tbl_02
;
DROP
TABLE
temp_tbl_02
;