summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_newdecimal-big.result
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/r/type_newdecimal-big.result
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/r/type_newdecimal-big.result')
-rw-r--r--mysql-test/r/type_newdecimal-big.result26
1 files changed, 0 insertions, 26 deletions
diff --git a/mysql-test/r/type_newdecimal-big.result b/mysql-test/r/type_newdecimal-big.result
deleted file mode 100644
index 4e694702d14..00000000000
--- a/mysql-test/r/type_newdecimal-big.result
+++ /dev/null
@@ -1,26 +0,0 @@
-drop procedure if exists sp1;
-CREATE PROCEDURE sp1()
-BEGIN
-DECLARE v1, v2, v3, v4 DECIMAL(28,12);
-DECLARE v3_2, v4_2 DECIMAL(28, 12);
-DECLARE counter INT;
-SET v1 = 1;
-SET v2 = 2;
-SET v3 = 1000000000000;
-SET v4 = 2000000000000;
-SET counter = 0;
-WHILE counter < 100000 DO
-SET v1 = v1 + 0.000000000001;
-SET v2 = v2 - 0.000000000001;
-SET v3 = v3 + 1;
-SET v4 = v4 - 1;
-SET counter = counter + 1;
-END WHILE;
-SET v3_2 = v3 * 0.000000000001;
-SET v4_2 = v4 * 0.000000000001;
-SELECT v1, v2, v3, v3_2, v4, v4_2;
-END//
-call sp1()//
-v1 v2 v3 v3_2 v4 v4_2
-1.000000100000 1.999999900000 1000000100000.000000000000 1.000000100000 1999999900000.000000000000 1.999999900000
-drop procedure sp1;