We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90ab1b2 commit b905626Copy full SHA for b905626
rust/src/operations/transaction/state.rs
@@ -43,8 +43,7 @@ impl DeltaTableState {
43
.map(|f| {
44
let field = ArrowField::try_from(f)?;
45
let corrected = match field.data_type() {
46
- // TODO Datafusion seems to currently not implement comparsion kernes for booleans in
47
- // dict arrays, so we have to omit converting that type for now.
+ // Dictionary encoding columns bools is a waste of space
48
DataType::Boolean => field.data_type().clone(),
49
_ => wrap_partition_type_in_dict(field.data_type().clone()),
50
};
0 commit comments