Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cpp/src/parquet/arrow/schema.cc
Original file line number Diff line number Diff line change
Expand Up @@ -822,8 +822,6 @@ Result<bool> ApplyOriginalStorageMetadata(const Field& origin_field,
if (num_children > 0 && origin_type->num_fields() == num_children) {
DCHECK_EQ(static_cast<int>(inferred->children.size()), num_children);
const auto factory = GetNestedFactory(*origin_type, *inferred_type);
ARROW_LOG(INFO) << "Nested type: origin = " << origin_type->ToString()
<< ", inferred = " << inferred_type->ToString();
if (factory) {
// The type may be modified (e.g. LargeList) while the children stay the same
modified |= origin_type->id() != inferred_type->id();
Expand Down