Description
In case of DoubleDocValues, boolVal(int doc) has been implemented but this is missing in case FloatDocValues.
Impact: For any DocValues which extends FloatDocValues and doesn't implement boolVal(int doc), parent boolVal in FucntionValues would be called.
boolVal implementation in FunctionValues
@Override public boolean boolVal(int doc) throws IOException { return intVal(doc) != 0; }
Let me know if I can work on it