List:Internals« Previous MessageNext Message »
From:Heikki Tuuri Date:September 23 2005 6:36pm
Subject:bk commit into 5.0 tree (heikki:1.2002)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of heikki. When heikki does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2002 05/09/23 21:36:07 heikki@stripped +1 -0
  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
    1.71 05/09/23 21:35:41 heikki@stripped +2 -1
    Fix a compilation error: Visual C++ does not seem to allow variable declaration in the middle of a program block

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	heikki
# Host:	hundin.mysql.fi
# Root:	/home/heikki/mysql-5.0

--- 1.70/innobase/row/row0ins.c	2005-09-23 16:22:23 +03:00
+++ 1.71/innobase/row/row0ins.c	2005-09-23 21:35:41 +03:00
@@ -1253,9 +1253,10 @@
 
 	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);
Thread
bk commit into 5.0 tree (heikki:1.2002)Heikki Tuuri23 Sep