List:Internals« Previous MessageNext Message »
From:jan.lindstrom Date:February 22 2005 1:03pm
Subject:bk commit into 5.0 tree (jan:1.1874)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of jan. When jan 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.1874 05/02/22 15:03:17 jan@stripped +1 -0
  Clean up prints in innodb_xa_prepare.

  innobase/trx/trx0trx.c
    1.45 05/02/22 15:03:10 jan@stripped +7 -5
    Clean up prints in innodb_xa_prepare.

# 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:	jan
# Host:	hundin.mysql.fi
# Root:	/home/jan/mysql-5.0

--- 1.44/innobase/trx/trx0trx.c	Tue Feb 22 14:38:46 2005
+++ 1.45/innobase/trx/trx0trx.c	Tue Feb 22 15:03:10 2005
@@ -1853,8 +1853,9 @@
 	ut_ad(xid_list);
 	ut_ad(len);
 
+	ut_print_timestamp(stderr);
 	fprintf(stderr,
-		"InnoDB: Starting recovery for XA transactions...\n");
+		"  InnoDB: Starting recovery for XA transactions...\n");
 
 
 	/* We should set those transactions which are in
@@ -1876,14 +1877,14 @@
 					trx->xid.bqual_length);
 
 			ut_print_timestamp(stderr);
-
 			fprintf(stderr,
-"InnoDB: Transaction %lu %lu in prepared state after recovery\n",
+"  InnoDB: Transaction %lu %lu in prepared state after recovery\n",
 				(ulong) ut_dulint_get_high(trx->id),
 				(ulong) ut_dulint_get_low(trx->id));
 
+			ut_print_timestamp(stderr);
 			fprintf(stderr,
-"InnoDB: Transaction contains changes to %lu rows\n",
+"  InnoDB: Transaction contains changes to %lu rows\n",
 			(ulong)ut_conv_dulint_to_longlong(trx->undo_no));
 
 			count++;
@@ -1898,8 +1899,9 @@
 
 	mutex_exit(&kernel_mutex);
 
+	ut_print_timestamp(stderr);
 	fprintf(stderr,
-		"InnoDB: %d transactions in prepare state after recovery\n",
+"  InnoDB: %d transactions in prepare state after recovery\n",
 		count);
 
 	return (count);			
Thread
bk commit into 5.0 tree (jan:1.1874)jan.lindstrom22 Feb