Skip to content

Commit

Permalink
fix: fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
WenyXu committed Jan 22, 2025
1 parent 1c5931b commit 5b9aaa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mito2/src/row_converter/sparse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ impl SparsePrimaryKeyCodec {
pub fn with_fields(fields: Vec<(ColumnId, SortField)>) -> Self {
Self {
inner: Arc::new(SparsePrimaryKeyCodecInner {
columns: fields.iter().map(|f| f.0).collect(),
columns: Some(fields.iter().map(|f| f.0).collect()),
table_id_field: SortField::new(ConcreteDataType::uint32_datatype()),
tsid_field: SortField::new(ConcreteDataType::uint64_datatype()),
label_field: SortField::new(ConcreteDataType::string_datatype()),
Expand Down

0 comments on commit 5b9aaa2

Please sign in to comment.