File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -560,15 +560,13 @@ fn compute_field_update(
560560 }
561561
562562 // Check for type change (including container changes)
563- if before. field . data_type ( ) != after. field . data_type ( ) {
564- if let Some ( change_type) =
565- classify_data_type_change ( before. field . data_type ( ) , after. field . data_type ( ) )
566- {
567- changes. push ( change_type) ;
568- }
569- // If None is returned, the container structure is the same and nested changes
570- // are already captured via field IDs, so we don't report a change here
563+ if let Some ( change_type) =
564+ classify_data_type_change ( before. field . data_type ( ) , after. field . data_type ( ) )
565+ {
566+ changes. push ( change_type) ;
571567 }
568+ // If None is returned, the container structure is the same and nested changes
569+ // are already captured via field IDs, so we don't report a change here
572570
573571 // Check for metadata changes (excluding column mapping metadata)
574572 if has_metadata_changes ( & before. field , & after. field ) {
You can’t perform that action at this time.
0 commit comments