diff options
author | unknown <timour@askmonty.org> | 2012-06-06 16:19:48 +0300 |
---|---|---|
committer | unknown <timour@askmonty.org> | 2012-06-06 16:19:48 +0300 |
commit | 8efc63ba5d32b77501226921ee503b9ae513a365 (patch) | |
tree | f87c5142ed7dc5ff72555b22ad19632fea527e10 /mysql-test/r/myisam_icp.result | |
parent | 7eaf0975ac4e1752399fdc06209739171350ccf4 (diff) | |
parent | f1ab00891ad050711557c6cdc62b17fff896aed9 (diff) | |
download | mariadb-git-8efc63ba5d32b77501226921ee503b9ae513a365.tar.gz |
Merge
Diffstat (limited to 'mysql-test/r/myisam_icp.result')
-rw-r--r-- | mysql-test/r/myisam_icp.result | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/myisam_icp.result b/mysql-test/r/myisam_icp.result index 186f9821450..bc7ebf9c439 100644 --- a/mysql-test/r/myisam_icp.result +++ b/mysql-test/r/myisam_icp.result @@ -839,6 +839,22 @@ Variable_name Value Handler_icp_attempts 2 Handler_icp_match 1 DROP TABLE t1; +create table t1 (a int,b char(5),primary key (a), key (b(1))); +insert into t1 values ('a','b'); +Warnings: +Warning 1366 Incorrect integer value: 'a' for column 'a' at row 1 +select 1 from t1 where a and b >= 'aa'; +1 +drop table t1; +# +# Bug#58015 "Assert in row_sel_field_store_in_mysql_format +# when running innodb_mrr_icp test" +# +create table t1 (a char(2) charset utf8,b double, primary key (a(1)),key (b)); +insert into t1 values ('',1); +select 1 from t1 where b <= 1 and a <> ''; +1 +drop table t1; drop table if exists t0, t1, t1i, t1m; # # BUG#826935 Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' failed |