Good to hear from you!
Andy
On 17/01/17 23:39, Andy Wagner wrote:
As someone that has been lurking on this list for a long time, I just want
to come out of the woodwork and say I really appreciate this work.
I look forward to using it.
~Andy
On Jan 17, 2017 11:44, "Andy Seaborne" <[email protected]> wrote:
Additional feature:
TDB2 now supports xsd:doubles as inline values.
Like over inline values, it does this if and only if the value fits,
otherwise it uses the node table.
In the case of xsd:doubles, there 62 bits to store them. xsd:doubles (as
of XSD 1.1) are very similar to IEEE-754-2008 binary64 and have a range
upto 10^308.
TDB2 inline double are limited to 10^76.
NaN, Inf, -Inf, 0 an -0 are inlined.
TDB2 inlines:
xsd:decimal
xsd:integer
and all types derived from xsd:integer
keeping the datatype (TDB1 does not).
xsd:double
xsd:float
xsd:dateTime
xsd:dateTimeStamp
xsd:date
xsd:boolean
Andy