summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-04-20 22:05:19 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2018-04-23 13:04:58 +0300
commit88b1905eda23226515a9ff59999c9a5a9ddf4958 (patch)
tree9e8b5193915d2e9841fd75cbb28e664e8cbf309c
parent01b2e773ef7a19dbd28a345021cd3a9aa6b10603 (diff)
downloadmariadb-git-88b1905eda23226515a9ff59999c9a5a9ddf4958.tar.gz
Fix -Wimplicit-fallthrough
-rw-r--r--storage/innobase/include/data0type.ic2
-rw-r--r--storage/xtradb/include/data0type.ic2
2 files changed, 4 insertions, 0 deletions
diff --git a/storage/innobase/include/data0type.ic b/storage/innobase/include/data0type.ic
index eaa90f6d33a..c04da618a84 100644
--- a/storage/innobase/include/data0type.ic
+++ b/storage/innobase/include/data0type.ic
@@ -524,6 +524,7 @@ dtype_get_fixed_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
+ /* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT:
@@ -601,6 +602,7 @@ dtype_get_min_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
+ /* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT:
diff --git a/storage/xtradb/include/data0type.ic b/storage/xtradb/include/data0type.ic
index 96b001e197e..a7e2eb0682c 100644
--- a/storage/xtradb/include/data0type.ic
+++ b/storage/xtradb/include/data0type.ic
@@ -525,6 +525,7 @@ dtype_get_fixed_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
+ /* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT:
@@ -602,6 +603,7 @@ dtype_get_min_size_low(
return(0);
}
#endif /* UNIV_DEBUG */
+ /* fall through */
case DATA_CHAR:
case DATA_FIXBINARY:
case DATA_INT: