Skip to content

Commit 3426c8a

Browse files
committed
fmt
1 parent 2defff5 commit 3426c8a

File tree

1 file changed

+5
-5
lines changed
  • parquet/src/arrow/schema

1 file changed

+5
-5
lines changed

parquet/src/arrow/schema/mod.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ pub struct FieldLevels {
104104
/// Convert a parquet [`SchemaDescriptor`] to [`FieldLevels`]
105105
///
106106
/// Columns not included within [`ProjectionMask`] will be ignored.
107-
///
107+
///
108108
/// The optional `hint` parameter is the desired Arrow schema. See the
109109
/// [`arrow`] module documentation for more information.
110-
///
110+
///
111111
/// [`arrow`]: crate::arrow
112-
///
112+
///
113113
/// # Notes:
114114
/// Where a field type in `hint` is compatible with the corresponding parquet type in `schema`, it
115115
/// 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 {
200200

201201
/// Mutates writer metadata by storing the encoded Arrow schema hint in
202202
/// [`ARROW_SCHEMA_META_KEY`].
203-
///
203+
///
204204
/// If there is an existing Arrow schema metadata, it is replaced.
205-
///
205+
///
206206
/// [`ARROW_SCHEMA_META_KEY`]: crate::arrow::ARROW_SCHEMA_META_KEY
207207
pub fn add_encoded_arrow_schema_to_metadata(schema: &Schema, props: &mut WriterProperties) {
208208
let encoded = encode_arrow_schema(schema);

0 commit comments

Comments
 (0)