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