We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd9f314 commit f7e69fbCopy full SHA for f7e69fb
parquet/tests/geospatial.rs
@@ -40,6 +40,7 @@ fn read_metadata(geospatial_test_file: &str) -> ParquetMetaData {
40
41
#[test]
42
fn test_read_logical_type() {
43
+ // Some crs values are short strings
44
let expected_logical_type = [
45
("crs-default.parquet", LogicalType::Geometry { crs: None }),
46
(
@@ -75,6 +76,8 @@ fn test_read_logical_type() {
75
76
assert_eq!(logical_type, expected_type);
77
}
78
79
+ // The crs value may also contain arbitrary values (in this case some JSON
80
+ // a bit too lengthy to type out)
81
let metadata = read_metadata("crs-arbitrary-value.parquet");
82
let logical_type = metadata
83
.file_metadata()
0 commit comments