summaryrefslogtreecommitdiff
path: root/mysql-test/r/range.result
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-01-21 23:39:35 +0100
committerunknown <serg@serg.mylan>2004-01-21 23:39:35 +0100
commita564332609712f1588ff13266bdb731dffcc0c9d (patch)
treee46ae07c45184a3e9285a504704783b4e0d2b10e /mysql-test/r/range.result
parent4ed2ba5f8ab0bd1ec59f96a927b70c94732a0435 (diff)
downloadmariadb-git-a564332609712f1588ff13266bdb731dffcc0c9d.tar.gz
test moved to an appropriate file
Diffstat (limited to 'mysql-test/r/range.result')
-rw-r--r--mysql-test/r/range.result8
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/r/range.result b/mysql-test/r/range.result
index 45d20a8fced..e87df9a6c24 100644
--- a/mysql-test/r/range.result
+++ b/mysql-test/r/range.result
@@ -300,11 +300,3 @@ SELECT COUNT(*) FROM t1 WHERE (c=0 and b=1) or (c=0 and a=1);
COUNT(*)
6
DROP TABLE t1;
-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';
-a b c
-807780 477 165
-drop table t1;