Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
json
/
jsonNanInf
/
positiveCases
/
truncFunctionWithParams.q
blob: d0c2582a99071c621d07f62512c1cbd3008c5ffc [
file
] [
log
] [
blame
]
set
store
.
json
.
reader
.
allow_nan_inf
=
true
;
--
@test
select
trunc
(
Nan
,
3
),
trunc
(
Positive_Infinity
,
3
),
trunc
(
Negative_Infinity
,
3
)
from
`jsonNanInf/PN_Inf_NaN.json`
;
reset store
.
json
.
reader
.
allow_nan_inf
;