Skip to content

Commit 08ad967

Browse files
Update kernel/src/schema/diff.rs
Co-authored-by: OussamaSaoudi <45303303+OussamaSaoudi@users.noreply.github.com>
1 parent f4afaeb commit 08ad967

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

kernel/src/schema/diff.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,8 +631,7 @@ fn classify_data_type_change(before: &DataType, after: &DataType) -> Option<Fiel
631631
// Both have struct elements - nested changes handled via field IDs
632632
(DataType::Struct(_), DataType::Struct(_)) => None,
633633
// For non-struct elements, recurse to check for changes (but only if types differ)
634-
(e1, e2) if e1 != e2 => classify_data_type_change(e1, e2),
635-
_ => None,
634+
(e1, e2) => classify_data_type_change(e1, e2),
636635
};
637636

638637
// Check container nullability change

0 commit comments

Comments
 (0)