Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyFan2002 committed Jan 25, 2024
1 parent f95d072 commit 7c78106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/query/expression/src/converts/arrow/to.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ impl From<&TableSchema> for ArrowSchema {
}

/// Parquet2 can't dealing with nested type like Tuple(int not null,int null) null, but for type like Tuple(int null,int null) null, it can work.
///
///
/// So when casting from TableSchema to Arrow2 schema, the inner type inherit the nullable property from outer type.
///
///
/// But when casting from TableSchema to Arrow-rs schema, there is no such problem, so the inside nullable is ignored.
pub fn table_schema_to_arrow_schema_ignore_inside_nullable(schema: &TableSchema) -> ArrowSchema {
let fields = schema
Expand Down

0 comments on commit 7c78106

Please sign in to comment.