mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge hh-nb.hungers:/work/trees/mysql-5.1-build-src-clean
into hh-nb.hungers:/work/merge/mysql-5.1-build
This commit is contained in:
@ -77,3 +77,4 @@ id name salary income_tax
|
|||||||
## Dropping table t1 ##
|
## Dropping table t1 ##
|
||||||
drop table t1;
|
drop table t1;
|
||||||
## Disconnection both the connections ##
|
## 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
|
--disable_warnings
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
@ -119,7 +121,8 @@ drop table t1;
|
|||||||
disconnect test_con1;
|
disconnect test_con1;
|
||||||
disconnect test_con2;
|
disconnect test_con2;
|
||||||
|
|
||||||
SET @@global.div_prescision_increment = @save_div_precision_increment;
|
connection default;
|
||||||
|
eval SET @@global.div_precision_increment = $save_div_precision_increment;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user