Skip to content

Commit

Permalink
Update CSV schema
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Oct 2, 2024
1 parent 3bd5d38 commit 4c03f29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datafusion/core/src/datasource/file_format/csv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ mod tests {
"c7: Int64",
"c8: Int64",
"c9: Int64",
"c10: Int64",
"c10: Utf8",
"c11: Float64",
"c12: Float64",
"c13: Utf8"
Expand Down Expand Up @@ -907,7 +907,7 @@ mod tests {
Field::new("c7", DataType::Int64, true),
Field::new("c8", DataType::Int64, true),
Field::new("c9", DataType::Int64, true),
Field::new("c10", DataType::Int64, true),
Field::new("c10", DataType::Utf8, true),
Field::new("c11", DataType::Float64, true),
Field::new("c12", DataType::Float64, true),
Field::new("c13", DataType::Utf8, true),
Expand Down

0 comments on commit 4c03f29

Please sign in to comment.