Commit 611dc88c authored by unknown's avatar unknown
Browse files

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
parent 4b314fc1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1253,9 +1253,10 @@ row_ins_check_foreign_constraint(

	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);