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