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 17, 2024
1 parent ea7452a commit f266435
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,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 f266435

Please sign in to comment.