Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
json
/
jsonNanInf
/
positiveCases
/
ceilFunction.q
blob: 540f54fd2be9da436e77d5ec2e23afdf715b20f3 [
file
] [
log
] [
blame
]
set
store
.
json
.
reader
.
allow_nan_inf
=
true
;
--
@test
select
ceil
(
Nan
)
NaN
,
ceil
(
Positive_Infinity
)
POS_INF
,
ceil
(
Negative_Infinity
)
NEG_INF
from
`jsonNanInf/PN_Inf_NaN.json`
;
reset store
.
json
.
reader
.
allow_nan_inf
;