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