Skip to content

Commit

Permalink
Merge 10.0 into 10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jan 3, 2018
2 parents 016caa3 + 8ac1982 commit 1e89c86
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion sql/sql_cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@ Query_cache::send_result_to_client(THD *thd, char *org_sql, uint query_length)
sql++;
continue;
}
/* fall trough */
/* fall through */
default:
break;
}
Expand Down
14 changes: 7 additions & 7 deletions storage/maria/ma_search.c
Original file line number Diff line number Diff line change
Expand Up @@ -745,11 +745,11 @@ void _ma_kpointer(register MARIA_HA *info, register uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break;
#else
case 7: *buff++=0;
/* fall trough */
/* fall through */
case 6: *buff++=0;
/* fall trough */
/* fall through */
case 5: *buff++=0;
/* fall trough */
/* fall through */
#endif
case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break;
Expand Down Expand Up @@ -881,13 +881,13 @@ void _ma_dpointer(MARIA_SHARE *share, uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break;
#else
case 8: *buff++=0;
/* fall trough */
/* fall through */
case 7: *buff++=0;
/* fall trough */
/* fall through */
case 6: *buff++=0;
/* fall trough */
/* fall through */
case 5: *buff++=0;
/* fall trough */
/* fall through */
#endif
case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break;
Expand Down
14 changes: 7 additions & 7 deletions storage/myisam/mi_search.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,11 +607,11 @@ void _mi_kpointer(register MI_INFO *info, register uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break;
#else
case 7: *buff++=0;
/* fall trough */
/* fall through */
case 6: *buff++=0;
/* fall trough */
/* fall through */
case 5: *buff++=0;
/* fall trough */
/* fall through */
#endif
case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break;
Expand Down Expand Up @@ -728,13 +728,13 @@ void _mi_dpointer(MI_INFO *info, uchar *buff, my_off_t pos)
case 5: mi_int5store(buff,pos); break;
#else
case 8: *buff++=0;
/* fall trough */
/* fall through */
case 7: *buff++=0;
/* fall trough */
/* fall through */
case 6: *buff++=0;
/* fall trough */
/* fall through */
case 5: *buff++=0;
/* fall trough */
/* fall through */
#endif
case 4: mi_int4store(buff,pos); break;
case 3: mi_int3store(buff,pos); break;
Expand Down

0 comments on commit 1e89c86

Please sign in to comment.