Ion has arbitrary precision for Int and Decimal however this may not be practical for some clients as some queries can be written to consume large quantities of memory, e.g. cast(1e300000000 as int)
A configurable way of defining max precision/scale for Int and Decimal, Ion Floats are already limited by the spec. The minimum allowed precision should be int64
Defaults to UNLIMITED so the default is following the Ion spec
Note Could be one of the options in CompilationOptions
Ion has arbitrary precision for
Int
andDecimal
however this may not be practical for some clients as some queries can be written to consume large quantities of memory, e.g.cast(1e300000000 as int)
A configurable way of defining max precision/scale for
Int
andDecimal
, IonFloat
s are already limited by the spec. The minimum allowed precision should be int64Defaults to
UNLIMITED
so the default is following the Ion specNote Could be one of the options in
CompilationOption
s