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