File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ pub struct FieldLevels {
104
104
/// Convert a parquet [`SchemaDescriptor`] to [`FieldLevels`]
105
105
///
106
106
/// Columns not included within [`ProjectionMask`] will be ignored.
107
- ///
107
+ ///
108
108
/// The optional `hint` parameter is the desired Arrow schema. See the
109
109
/// [`arrow`] module documentation for more information.
110
- ///
110
+ ///
111
111
/// [`arrow`]: crate::arrow
112
- ///
112
+ ///
113
113
/// # Notes:
114
114
/// Where a field type in `hint` is compatible with the corresponding parquet type in `schema`, it
115
115
/// will be used, otherwise the default arrow type for the given parquet column type will be used.
@@ -200,9 +200,9 @@ pub fn encode_arrow_schema(schema: &Schema) -> String {
200
200
201
201
/// Mutates writer metadata by storing the encoded Arrow schema hint in
202
202
/// [`ARROW_SCHEMA_META_KEY`].
203
- ///
203
+ ///
204
204
/// If there is an existing Arrow schema metadata, it is replaced.
205
- ///
205
+ ///
206
206
/// [`ARROW_SCHEMA_META_KEY`]: crate::arrow::ARROW_SCHEMA_META_KEY
207
207
pub fn add_encoded_arrow_schema_to_metadata ( schema : & Schema , props : & mut WriterProperties ) {
208
208
let encoded = encode_arrow_schema ( schema) ;
You can’t perform that action at this time.
0 commit comments