You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: parquet/README.md
+5-17Lines changed: 5 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,29 +40,17 @@ while let Some(record) = iter.next() {
40
40
}
41
41
```
42
42
43
-
See [crate documentation](https://docs.rs/crate/parquet) on available API.
43
+
For an example of reading to Arrow arrays, please see [here](https://docs.rs/parquet/latest/parquet/arrow/index.html)
44
+
45
+
See [crate documentation](https://docs.rs/parquet/latest/parquet/) for the full API.
44
46
45
47
## Rust Version Compatbility
46
48
47
49
This crate is tested with the latest stable version of Rust. We do not currrently test against other, older versions of the Rust compiler.
48
50
49
-
## Upgrading from versions prior to 4.0
50
-
51
-
If you are upgrading from version 3.0 or previous of this crate, you
52
-
likely need to change your code to use [`ConvertedType`] rather than
53
-
[`LogicalType`] to preserve existing behaviour in your code.
54
-
55
-
Version 2.4.0 of the Parquet format introduced a `LogicalType` to replace the existing `ConvertedType`.
56
-
This crate used `parquet::basic::LogicalType` to map to the `ConvertedType`, but this has been renamed to `parquet::basic::ConvertedType` from version 4.0 of this crate.
57
-
58
-
The `ConvertedType` is deprecated in the format, but is still written
59
-
to preserve backward compatibility.
60
-
It is preferred that `LogicalType` is used, as it supports nanosecond
61
-
precision timestamps without using the deprecated `Int96` Parquet type.
62
-
63
51
## Supported Parquet Version
64
52
65
-
- Parquet-format 2.6.0
53
+
- Parquet-format 4.0.0
66
54
67
55
To update Parquet format to a newer version, check if [parquet-format](https://github.com/sunchao/parquet-format-rs)
68
56
version is available. Then simply update version of `parquet-format` crate in Cargo.toml.
@@ -81,7 +69,7 @@ version is available. Then simply update version of `parquet-format` crate in Ca
0 commit comments