Thanks, the #numerator:denominator:scale: is part of our Dialect
abstraction layer so I didn't noticed it.
Best regards,
David Gorisek
Ted wrote:
> Hi David,
>
> ScaledDecimal class>>odbDeserialize: calls #numerator:denominator:scale:
> which doesn't exist. I modified it into:
>
> odbDeserialize: deserializer
> | stream |
> #tbModified.
> stream := deserializer stream.
> ^self newFromNumber: (Fraction numerator: stream getInteger
> denominator: stream getInteger)
> scale: stream getInteger
>
> I don't know whether you can include it into a OA live update?
>
> Ted