Skip to content

Commit

Permalink
Remove redundant check
Browse files Browse the repository at this point in the history
  • Loading branch information
zeotuan committed Oct 12, 2024
1 parent 68a6285 commit 05a68c7
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ object SchemaComparer {
zipStruct.forall { case (f1, f2) =>
(f1.nullable == f1.nullable || ignoreNullable) &&
(f1.name == f2.name || ignoreColumnNames) &&
(f1.name == f2.name || ignoreColumnNames) &&
(f1.metadata == f2.metadata || ignoreMetadata) &&
equals(f1.dataType, f2.dataType, ignoreNullable, ignoreColumnNames, ignoreColumnOrder, ignoreMetadata)
}
Expand Down

0 comments on commit 05a68c7

Please sign in to comment.