Skip to content

Commit

Permalink
fix: int32 -> int64 for psm_id in parquet
Browse files Browse the repository at this point in the history
  • Loading branch information
lazear committed Nov 29, 2023
1 parent 93b0a4b commit 2cec0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sage-cloudpath/src/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ pub fn serialize_features(
};
}

write_col!(|f: &Feature| f.psm_id as i32, Int32Type);
write_col!(|f: &Feature| f.psm_id as i64, Int64Type);
write_col!(
|f: &Feature| filenames[f.file_id].as_str().into(),
ByteArrayType
Expand Down

0 comments on commit 2cec0aa

Please sign in to comment.