diff options
author | monty@hundin.mysql.fi <> | 2001-06-28 15:24:28 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-06-28 15:24:28 +0300 |
commit | 3c3d0bbd570a6f34c083b48670f6826f35ce970a (patch) | |
tree | e68147e4ae9c9aa0bdb03416fc4873823457480a /mysql-test | |
parent | 96aac3f0f58211be19544d7c04f970051fe2548b (diff) | |
download | mariadb-git-3c3d0bbd570a6f34c083b48670f6826f35ce970a.tar.gz |
Allow floats of type 1.0e1
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/type_float.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/type_float.test b/mysql-test/t/type_float.test index 1496170a256..23941ad2913 100644 --- a/mysql-test/t/type_float.test +++ b/mysql-test/t/type_float.test @@ -3,7 +3,8 @@ # Numeric floating point. SELECT 10,10.0,10.,.1e+2,100.0e-1; -select 6e-05, -6e-05, --6e-05, -6e-05+1.000000; +SELECT 6e-05, -6e-05, --6e-05, -6e-05+1.000000; +SELECT 1e1,1.e1,1.0e1,1e+1,1.e+1,1.0e+1,1e-1,1.e-1,1.0e-1; drop table if exists t1; create table t1 (f1 float(24),f2 float(52)); |