Commit 29a18ff8 authored by hhunger@hh-nb.hungers's avatar hhunger@hh-nb.hungers

fix of typo for bug#35988.

parent 9c925be1
......@@ -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;
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment