We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07c3cc4 commit d6b667eCopy full SHA for d6b667e
datafusion/core/src/datasource/file_format/csv.rs
@@ -771,7 +771,7 @@ mod tests {
771
"c7: Int64",
772
"c8: Int64",
773
"c9: Int64",
774
- "c10: Int64",
+ "c10: Utf8",
775
"c11: Float64",
776
"c12: Float64",
777
"c13: Utf8"
@@ -907,7 +907,7 @@ mod tests {
907
Field::new("c7", DataType::Int64, true),
908
Field::new("c8", DataType::Int64, true),
909
Field::new("c9", DataType::Int64, true),
910
- Field::new("c10", DataType::Int64, true),
+ Field::new("c10", DataType::Utf8, true),
911
Field::new("c11", DataType::Float64, true),
912
Field::new("c12", DataType::Float64, true),
913
Field::new("c13", DataType::Utf8, true),
0 commit comments