mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
fix of typo for bug#35988.
This commit is contained in:
parent
9c925be163
commit
29a18ff8b6
2 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue