Skip to content

Commit

Permalink
Fix repo
Browse files Browse the repository at this point in the history
  • Loading branch information
orf committed Dec 5, 2024
1 parent cf3ab0f commit a954e64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ pub fn merge_parquet_files(
.with_multithreaded(true)
.with_maintain_order(false),
);
df = df.with_column(lit(repo_id as u32).alias("repository"));
df = df.with_column(lit(repo_id as u32).alias("repository").cast(DataType::UInt32));
let mut df = df.collect()?;
let w = File::create(output_path)?;
let writer = ParquetWriter::new(BufWriter::new(w))
Expand Down

0 comments on commit a954e64

Please sign in to comment.