summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_float.result
diff options
context:
space:
mode:
authorunknown <kaa@polly.local>2006-09-22 19:42:27 +0400
committerunknown <kaa@polly.local>2006-09-22 19:42:27 +0400
commita8bd76a0c14d306d3701ce248091d7c5e223ddb4 (patch)
treeca26199ed96c12157ecb8c0a77dc67aafd652d83 /mysql-test/r/type_float.result
parent2b90301dacf4106e1e556f793ad3f2443b315268 (diff)
parent0c72b05a83a54ef86957ad03d73aa96b4c05e252 (diff)
downloadmariadb-git-a8bd76a0c14d306d3701ce248091d7c5e223ddb4.tar.gz
Merge polly.local:/tmp/22129/bug22129/my50-bug22129
into polly.local:/tmp/22129/bug22129/my51-bug22129 mysql-test/r/type_float.result: Auto merged mysql-test/t/type_float.test: Auto merged
Diffstat (limited to 'mysql-test/r/type_float.result')
-rw-r--r--mysql-test/r/type_float.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/type_float.result b/mysql-test/r/type_float.result
index cfae61d5e91..d28131cc456 100644
--- a/mysql-test/r/type_float.result
+++ b/mysql-test/r/type_float.result
@@ -262,6 +262,13 @@ desc t3;
Field Type Null Key Default Extra
a decimal(21,2) NO 0.00
drop table t1,t2,t3;
+select 1e-308, 1.00000001e-300, 100000000e-300;
+1e-308 1.00000001e-300 100000000e-300
+0 1.00000001e-300 1e-292
+select 10e307;
+10e307
+1e+308
+End of 4.1 tests
create table t1 (s1 float(0,2));
ERROR 42000: For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column 's1').
create table t1 (s1 float(1,2));