List:Commits« Previous MessageNext Message »
From:horst Date:April 17 2008 1:51pm
Subject:bk commit into 5.1 tree (hhunger:1.2595) BUG#35988
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of hhunger.  When hhunger 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@stripped, 2008-04-17 15:51:17+02:00, hhunger@stripped +2 -0
  fix of typo for bug#35988.

  mysql-test/r/div_precision_increment_func.result@stripped, 2008-04-17 15:51:15+02:00, hhunger@stripped +1 -0
    fix of typo for bug#35988.

  mysql-test/t/div_precision_increment_func.test@stripped, 2008-04-17 15:51:15+02:00, hhunger@stripped +5 -2
    fix of typo for bug#35988.

diff -Nrup a/mysql-test/r/div_precision_increment_func.result b/mysql-test/r/div_precision_increment_func.result
--- a/mysql-test/r/div_precision_increment_func.result	2008-04-10 15:12:39 +02:00
+++ b/mysql-test/r/div_precision_increment_func.result	2008-04-17 15:51:15 +02:00
@@ -77,3 +77,4 @@ id	name	salary	income_tax
 ## Dropping table t1 ##
 drop table t1;
 ## Disconnection both the connections ##
+SET @@global.div_precision_increment = 4;
diff -Nrup a/mysql-test/t/div_precision_increment_func.test b/mysql-test/t/div_precision_increment_func.test
--- a/mysql-test/t/div_precision_increment_func.test	2008-04-16 16:32:30 +02:00
+++ b/mysql-test/t/div_precision_increment_func.test	2008-04-17 15:51:15 +02:00
@@ -19,7 +19,9 @@
 #                                                                              #
 ################################################################################
 
-SET @save_div_precision_increment = @@global.div_presision_increment;
+let $save_div_precision_increment = `SELECT @@global.div_precision_increment`
+ 
+#SET @save_div_precision_increment = @@global.div_precision_increment;
 
 --disable_warnings
 drop table if exists t1;
@@ -119,7 +121,8 @@ drop table t1;
 disconnect test_con1;
 disconnect test_con2;
 
-SET @@global.div_prescision_increment = @save_div_precision_increment;
+connection default;
+eval SET @@global.div_precision_increment = $save_div_precision_increment;
 
 
 
Thread
bk commit into 5.1 tree (hhunger:1.2595) BUG#35988horst17 Apr