diff options
author | unknown <serg@serg.mylan> | 2004-01-21 23:39:35 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-01-21 23:39:35 +0100 |
commit | cdcf112af01e0365f5600b9de442f6640569a7a0 (patch) | |
tree | e46ae07c45184a3e9285a504704783b4e0d2b10e /mysql-test/t/range.test | |
parent | 0ef9acc9a9932ea63ff41d4528231632f3a3d31d (diff) | |
download | mariadb-git-cdcf112af01e0365f5600b9de442f6640569a7a0.tar.gz |
test moved to an appropriate file
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r-- | mysql-test/t/range.test | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test index 9d9feaa4edc..b04e614a740 100644 --- a/mysql-test/t/range.test +++ b/mysql-test/t/range.test @@ -249,14 +249,3 @@ SELECT COUNT(*) FROM t1 WHERE (c=0 and a=1) or (c=0 and b=1); SELECT COUNT(*) FROM t1 WHERE (c=0 and b=1) or (c=0 and a=1); DROP TABLE t1; -# -# BUG#2295 - range on blob -# - -create table t1(a text not null, b text not null, c text not null, index (a(10),b(10),c(10))); -insert into t1 values('807780', '477', '165'); -insert into t1 values('807780', '477', '162'); -insert into t1 values('807780', '472', '162'); -select * from t1 where a='807780' and b='477' and c='165'; -drop table t1; - |