diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2003-08-30 18:21:24 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2003-08-30 18:21:24 +0300 |
commit | 674f3881dff0baa13a0b19b7a577bf96a80ce2d3 (patch) | |
tree | ad5609f54688b9a945e0aba45665f2b5222d8715 /mysql-test/r/isam.result | |
parent | fd7bc7267647a4dc8b32ef1c99ae4e18fa2c6523 (diff) | |
download | mariadb-git-674f3881dff0baa13a0b19b7a577bf96a80ce2d3.tar.gz |
Two small fixes
mysql-test/r/isam.result:
Fixing results to match test changes
sql/sql_union.cc:
Better fix for VC++
Diffstat (limited to 'mysql-test/r/isam.result')
-rw-r--r-- | mysql-test/r/isam.result | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/r/isam.result b/mysql-test/r/isam.result index b83185b0c01..bacb88a27fc 100644 --- a/mysql-test/r/isam.result +++ b/mysql-test/r/isam.result @@ -1,13 +1,5 @@ drop table if exists t1,t2; create table t1 (a tinyint not null auto_increment, b blob not null, primary key (a)) type=isam; -Warnings: -Warning 1263 Data truncated for column 'b' at row 1 -Warnings: -Warning 1263 Data truncated for column 'b' at row 1 -Warnings: -Warning 1263 Data truncated for column 'b' at row 1 -Warnings: -Warning 1263 Data truncated for column 'b' at row 1 delete from t1 where (a & 1); select sum(length(b)) from t1; sum(length(b)) |