Disable dictionary encoding in general for all columns. Default enabled.
| 442 | /// Disable dictionary encoding in general for all columns. Default |
| 443 | /// enabled. |
| 444 | Builder* disable_dictionary() { |
| 445 | default_column_properties_.set_dictionary_enabled(false); |
| 446 | return this; |
| 447 | } |
| 448 | |
| 449 | /// Enable dictionary encoding for column specified by `path`. Default |
| 450 | /// enabled. |
no test coverage detected