summaryrefslogtreecommitdiff
path: root/mysql-test/t/range.test
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2004-08-20 14:29:28 +0500
committerunknown <hf@deer.(none)>2004-08-20 14:29:28 +0500
commita8767c732c5c0dd23800a89b0edfd27ce32d7d18 (patch)
tree4cf50aa844b2d1d2662753c1e1144b332f10c704 /mysql-test/t/range.test
parent83e6ea37be8b25cdfe34dc6aa198e780ecab1057 (diff)
downloadmariadb-git-a8767c732c5c0dd23800a89b0edfd27ce32d7d18.tar.gz
Fix to make range.test work smoothly --without-innidb
mysql-test/t/range.test: warnings disabled
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r--mysql-test/t/range.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test
index 6037f68db55..61886221fcf 100644
--- a/mysql-test/t/range.test
+++ b/mysql-test/t/range.test
@@ -412,7 +412,9 @@ select count(*) from t2 where x > -16;
select count(*) from t2 where x = 18446744073709551601;
drop table t1;
+--disable_warnings
create table t1 (x bigint unsigned not null primary key) engine=innodb;
+--enable_warnings
insert into t1(x) values (0xfffffffffffffff0);
insert into t1(x) values (0xfffffffffffffff1);
select * from t1;