Skip to content

Commit

Permalink
Merge 10.2 into bb-10.2-ext
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jan 3, 2018
2 parents f7fd6ac + af0ba43 commit 3fcbeb4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion sql/sql_cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1815,7 +1815,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
2 changes: 1 addition & 1 deletion sql/sql_trigger.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1601,7 +1601,7 @@ bool Table_triggers_list::check_n_load(THD *thd, const char *db,
thd->spcont= save_spcont;
thd->variables.sql_mode= save_sql_mode;
thd->reset_db(save_db.str, save_db.length);
/* Fall trough to error */
/* Fall through to error */
}
}

Expand Down
1 change: 0 additions & 1 deletion sql/table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7431,7 +7431,6 @@ int TABLE::update_virtual_fields(handler *h, enum_vcol_update_mode update_mode)
swap_values= 1;
break;
case VCOL_UPDATE_FOR_DELETE:
/* Fall trough */
case VCOL_UPDATE_FOR_WRITE:
update= bitmap_is_set(vcol_set, vf->field_index);
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 3fcbeb4

Please sign in to comment.