Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
cttas
/
cttas_11_b.sql
blob: 91f7962c274bde299ecfd745081ac0487670f8f3 [
file
] [
log
] [
blame
]
CREATE
TEMPORARY
TABLE
dfs
.
tmp
.
temptbl_11b PARTITION
BY
(
col_int
)
AS
SELECT
DISTINCT
col_int
FROM
typeall_l
ORDER
BY
col_int
;
SELECT
MAX
(
col_int
)
FROM
dfs
.
tmp
.
temptbl_11b
;
DROP
TABLE
dfs
.
tmp
.
temptbl_11b
;