diff options
author | malff@lambda.weblab <> | 2007-10-29 07:53:15 -0600 |
---|---|---|
committer | malff@lambda.weblab <> | 2007-10-29 07:53:15 -0600 |
commit | 6d15d42eca412781ee77647f8807c4d8f037a3e1 (patch) | |
tree | 8c916dddc6236faf87d25771694702926fd47ee5 /mysql-test/r | |
parent | 53b1c3a29941634fb77cb20a62cc0f1acfc8d05d (diff) | |
parent | b2264ff81040fa021671181d8098778964458033 (diff) | |
download | mariadb-git-6d15d42eca412781ee77647f8807c4d8f037a3e1.tar.gz |
Merge lambda.weblab:/home/malff/TREE/mysql-5.0-base
into lambda.weblab:/home/malff/TREE/mysql-5.0-rt-merge
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/select.result | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index ed120a1bbb8..76022053702 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -4096,4 +4096,39 @@ SELECT `x` FROM v3; x 1 DROP VIEW v1, v2, v3; + +# +# Bug#30736: Row Size Too Large Error Creating a Table and +# Inserting Data. +# +DROP TABLE IF EXISTS t1; +DROP TABLE IF EXISTS t2; + +CREATE TABLE t1( +c1 DECIMAL(10, 2), +c2 FLOAT); + +INSERT INTO t1 VALUES (0, 1), (2, 3), (4, 5); + +CREATE TABLE t2( +c3 DECIMAL(10, 2)) +SELECT +c1 * c2 AS c3 +FROM t1; + +SELECT * FROM t1; +c1 c2 +0.00 1 +2.00 3 +4.00 5 + +SELECT * FROM t2; +c3 +0.00 +6.00 +20.00 + +DROP TABLE t1; +DROP TABLE t2; + End of 5.0 tests |