Skip to content

Commit abe25c3

Browse files
committed
After-merge fix: -Wconversion in GCC 4 to 9
1 parent a4b7232 commit abe25c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/innobase/data/data0data.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ dtuple_convert_big_rec(
688688
goto skip_field;
689689
}
690690

691-
longest_i = i + mblob;
691+
longest_i = mblob ? i + 1 : i;
692692
longest = savings;
693693

694694
skip_field:

0 commit comments

Comments
 (0)