mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
row0ins.c:
Fix a compilation error: Visual C++ does not seem to allow variable declaration in the middle of a program block innobase/row/row0ins.c: Fix a compilation error: Visual C++ does not seem to allow variable declaration in the middle of a program block
This commit is contained in:
parent
4b314fc11d
commit
611dc88c16
1 changed files with 2 additions and 1 deletions
|
@ -1253,9 +1253,10 @@ run_again:
|
|||
|
||||
if (check_table == NULL || check_table->ibd_file_missing) {
|
||||
if (check_ref) {
|
||||
FILE* ef = dict_foreign_err_file;
|
||||
|
||||
row_ins_set_detailed(trx, foreign);
|
||||
|
||||
FILE* ef = dict_foreign_err_file;
|
||||
mutex_enter(&dict_foreign_err_mutex);
|
||||
rewind(ef);
|
||||
ut_print_timestamp(ef);
|
||||
|
|
Loading…
Reference in a new issue