Sign in
apache
/
drill-test-framework
/
9324c6675efda54616532025bc4b6555370790f6
/
.
/
framework
/
resources
/
Functional
/
convert
/
convert15.q
blob: ee468b1226ac0e8533c9aef52e7a3253c74604a2 [
file
] [
log
] [
blame
]
select
c_row
,
cast
(
c_date
as
date
),
convert_from
(
convert_to
(
c_date
,
'DATE_EPOCH'
),
'DATE_EPOCH'
)
from
data
where
c_row
<
23
;