Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly delegate BitColumnExpression::eval(*double out, bool& missing)
In the old code calling `e.eval(&value_[0], missing_);` when e was a bitfield would actually call ColumnExpression::eval(*double out, bool& missing) and it wouldn't delegate to BitColumnExpression::eval(bool& missing) This change overrides BitColumnExpression::eval(*double out, bool& missing) to SQLExpression:eval(*double out, bool& missing) which correctly delegates to BitColumnExpression::eval(bool& missing)
- Loading branch information