Details
Description
There's a missing 'break' statement in the following code:
case DECIMAL: ColumnTypeAttributes typeAttributes = column.getTypeAttributes(); addDecimal(index, DecimalUtil.minValue(typeAttributes.getPrecision(), typeAttributes.getScale())); case STRING: addStringUtf8(index, AsyncKuduClient.EMPTY_ARRAY); break;
which I think could cause incorrect results for range partition pruning on decimal columns.