Hi Steve
I saw you checked this in today. Jira is down so I couldn't file the
patch against it
public class HqlBitwiseOr : HqlExpression
{
public HqlBitwiseOr(IASTFactory factory, HqlExpression lhs,
HqlExpression rhs)
: base(HqlSqlWalker.BAND, "band", factory, lhs, rhs)
{
}
}
public class HqlBitwiseAnd : HqlExpression
{
public HqlBitwiseAnd(IASTFactory factory, HqlExpression lhs,
HqlExpression rhs)
: base(HqlSqlWalker.BOR, "bor", factory, lhs, rhs)
{
}
}
Easy fix, the HqlSqlWalker is backwards :X
--
You received this message because you are subscribed to the Google Groups
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/nhusers?hl=en.