diff options
author | unknown <msvensson@neptunus.(none)> | 2005-09-23 14:37:22 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2005-09-23 14:37:22 +0200 |
commit | 72a8049b0dda6e06d893f3be64a2aced4c94eed4 (patch) | |
tree | 2eaeadd57a23c5370c6f6a873954cbf3dd210ccf /mysql-test/r/union.result | |
parent | 129300f13dbc77d77c0f25aebcf70e209041c609 (diff) | |
download | mariadb-git-72a8049b0dda6e06d893f3be64a2aced4c94eed4.tar.gz |
Merge from 4.1 to 5.0
mysql-test/r/loaddata.result:
Add drop tablea after test case
mysql-test/r/type_decimal.result:
Update warnings
mysql-test/r/union.result:
Miss in merge
mysql-test/t/loaddata.test:
Add drop table after test case
sql/opt_sum.cc:
Add missing }
sql/sql_load.cc:
Manual merge
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r-- | mysql-test/r/union.result | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index eb129e32983..042dfb5ad8d 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -780,21 +780,6 @@ t1 CREATE TABLE `t1` ( `b` longblob ) ENGINE=MyISAM DEFAULT CHARSET=latin1 drop table t1,t2; -create table t1 (d decimal(10,1)); -create table t2 (d decimal(10,9)); -insert into t1 values ("100000000.0"); -insert into t2 values ("1.23456780"); -create table t3 select * from t2 union select * from t1; -select * from t3; -d -1.234567800 -100000000.000000000 -show create table t3; -Table Create Table -t3 CREATE TABLE `t3` ( - `d` decimal(18,9) default NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1 -drop table t1,t2,t3; create table t1 select 1 union select -1; select * from t1; 1 |