Skip to content

Commit 61a274a

Browse files
committed
Merge branch 'main' into ffi-logging-take-1
2 parents 4f3429d + 695b841 commit 61a274a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

kernel/src/table_features/column_mapping.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use serde::{Deserialize, Serialize};
1111
use strum::EnumString;
1212

1313
/// Modes of column mapping a table can be in
14-
#[derive(Debug, Default, EnumString, Serialize, Deserialize, Copy, Clone, PartialEq, Eq)]
14+
#[derive(Debug, EnumString, Serialize, Deserialize, Copy, Clone, PartialEq, Eq)]
1515
#[strum(serialize_all = "camelCase")]
1616
#[serde(rename_all = "camelCase")]
1717
pub enum ColumnMappingMode {
@@ -20,7 +20,6 @@ pub enum ColumnMappingMode {
2020
/// Columns are mapped by their field_id in parquet
2121
Id,
2222
/// Columns are mapped to a physical name
23-
#[default]
2423
Name,
2524
}
2625

0 commit comments

Comments
 (0)