On Tue, Jan 24, 2012 at 4:24 AM, Ricardo Peres <[email protected]> wrote:
> Greetings, everyone!
>
> In the last days, a number of bugs showed up which didn't exist
> before; I assume they have something to do with recent refactorings.
>
> One is the inability to sum a Single property, whereas a Double,
> Int32, Int64, etc, will work. This happens, from what I can tell, for
> a missing condition in HqlIdent (file HqlTreeNode.cs):
>
> case TypeCode.Single:
> SetText("decimal");
> break;
>
Perhaps I misunderstand, but why would a single be a decimal? decimal has
a different range and base than a single precision floating point number.
Patrick Earl