Commit 464ba0e9 authored by Daniel Black's avatar Daniel Black Committed by Sergey Vojtovich

versioning: add explict fallthough to prevent gcc warning

gcc7 warning:

sql/table.cc: In member function ‘int TABLE_SHARE::init_from_binary_frm_image(THD*, bool, const uchar*, size_t)’:
sql/table.cc:2032:11: warning: this statement may fall through [-Wimplicit-fallthrough=]
           if (vers_can_native)
           ^~
sql/table.cc:2037:9: note: here
         default:
         ^~~~~~~
parent 5db9c6e4
......@@ -2037,6 +2037,7 @@ int TABLE_SHARE::init_from_binary_frm_image(THD *thd, bool write,
versioned= VERS_TRX_ID;
break;
}
/* Fallthrough */
default:
my_error(ER_VERS_FIELD_WRONG_TYPE, MYF(0), fieldnames.type_names[i],
versioned == VERS_TIMESTAMP ? "TIMESTAMP(6)" : "BIGINT(20) UNSIGNED",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment