MCPcopy Create free account
hub / github.com/apache/arrow-rs / test_parse_invalid_csv_float

Function test_parse_invalid_csv_float

arrow-csv/src/reader/mod.rs:1898–1906  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1896
1897 #[test]
1898 fn test_parse_invalid_csv_float() {
1899 let file_name = "test/data/various_invalid_types/invalid_float.csv";
1900
1901 let error = invalid_csv_helper(file_name);
1902 assert_eq!(
1903 "Parser error: Error while parsing value '4.x4' as type 'Float32' for column 1 at line 4. Row data: '[4,4.x4,,false]'",
1904 error
1905 );
1906 }
1907
1908 #[test]
1909 fn test_parse_invalid_csv_int() {

Callers

nothing calls this directly

Calls 1

invalid_csv_helperFunction · 0.85

Tested by

no test coverage detected