summaryrefslogtreecommitdiff
path: root/mysql-test/t/bigint.test
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-08-12 04:04:43 +0300
committermonty@hundin.mysql.fi <>2002-08-12 04:04:43 +0300
commit3ef9d44edcd3db115d03a6ed7e896c662ad2182e (patch)
tree4ba65b7347df0448111dd1a3ab055bc2c8a1c6dc /mysql-test/t/bigint.test
parentc99c1fd38439a7c529dc24c03c5ff586ba694c57 (diff)
parentd825808a726960fa4fde7d4569c2d95014ca440f (diff)
downloadmariadb-git-3ef9d44edcd3db115d03a6ed7e896c662ad2182e.tar.gz
merge with 3.23.52
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r--mysql-test/t/bigint.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test
index 535bf0e4a60..15b35ac7c87 100644
--- a/mysql-test/t/bigint.test
+++ b/mysql-test/t/bigint.test
@@ -5,6 +5,12 @@ select 0,256,00000000000000065536,2147483647,-2147483648,2147483648,+4294967296;
select 9223372036854775807,-009223372036854775808;
select +9999999999999999999,-9999999999999999999;
+#
+# In 3.23 we have to disable the test of column to bigint as
+# this fails on AIX powerpc (the resolution for double is not good enough)
+# This will work on 4.0 as we then have internal handling of bigint variables.
+#
+
drop table if exists t1;
create table t1 (a bigint unsigned not null, primary key(a));
insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFE);