Disable dictionary encoding in general for all columns. Default enabled.
| 418 | /// Disable dictionary encoding in general for all columns. Default |
| 419 | /// enabled. |
| 420 | Builder* disable_dictionary() { |
| 421 | default_column_properties_.set_dictionary_enabled(false); |
| 422 | return this; |
| 423 | } |
| 424 | |
| 425 | /// Enable dictionary encoding for column specified by `path`. Default |
| 426 | /// enabled. |
no test coverage detected