summaryrefslogtreecommitdiff
path: root/mysql-test/main/select.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2019-05-14 21:47:38 +0400
committerAlexander Barkov <bar@mariadb.com>2019-05-15 07:21:00 +0400
commit462d6893977f31ffd4cb35f7eb76b521acfd1fb4 (patch)
tree38ada44127c26fc8c833988b09a42dbe22186c7c /mysql-test/main/select.result
parent49373397057aac63b4ce1557c941d508ea87be99 (diff)
downloadmariadb-git-462d6893977f31ffd4cb35f7eb76b521acfd1fb4.tar.gz
MDEV-19468 Hybrid type expressions return wrong format for FLOAT
Diffstat (limited to 'mysql-test/main/select.result')
-rw-r--r--mysql-test/main/select.result14
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/main/select.result b/mysql-test/main/select.result
index 9b6a570717b..352ab4ddef4 100644
--- a/mysql-test/main/select.result
+++ b/mysql-test/main/select.result
@@ -2789,26 +2789,26 @@ id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 range key1 key1 5 NULL 3 Using where; Using index
select max(key1) from t1 where key1 <= 0.6158;
max(key1)
-0.6158000230789185
+0.6158
select max(key2) from t2 where key2 <= 1.6158;
max(key2)
-1.6158000230789185
+1.6158
select min(key1) from t1 where key1 >= 0.3762;
min(key1)
-0.37619999051094055
+0.3762
select min(key2) from t2 where key2 >= 1.3762;
min(key2)
-1.3761999607086182
+1.3762
select max(key1), min(key2) from t1, t2
where key1 <= 0.6158 and key2 >= 1.3762;
max(key1) min(key2)
-0.6158000230789185 1.3761999607086182
+0.6158 1.3762
select max(key1) from t1 where key1 <= 0.6158 and rand() + 0.5 >= 0.5;
max(key1)
-0.38449999690055847
+0.3845
select min(key1) from t1 where key1 >= 0.3762 and rand() + 0.5 >= 0.5;
min(key1)
-0.38449999690055847
+0.3845
DROP TABLE t1,t2;
CREATE TABLE t1 (i BIGINT UNSIGNED NOT NULL);
INSERT INTO t1 VALUES (10);