summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkent@mysql.com/kent-amd64.(none) <>2007-11-12 12:52:03 +0100
committerkent@mysql.com/kent-amd64.(none) <>2007-11-12 12:52:03 +0100
commit3bb7cac84b6a0f98521d3d3b334923acd758dae7 (patch)
tree37f84794d03b6e651b90b584ba2ef2668dfd529a
parent33ad13280c22e0d5b1ba6bd6ceb920f49a678d95 (diff)
downloadmariadb-git-3bb7cac84b6a0f98521d3d3b334923acd758dae7.tar.gz
bigint.test, bigint.result:
Test case for Bug#30069
-rw-r--r--mysql-test/r/bigint.result6
-rw-r--r--mysql-test/t/bigint.test9
2 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result
index e9a457c9dfa..a73342e1f7d 100644
--- a/mysql-test/r/bigint.result
+++ b/mysql-test/r/bigint.result
@@ -135,3 +135,9 @@ t2.value64=t1.value64;
value64 value32 value64 value32
9223372036854775807 2 9223372036854775807 4
drop table t1, t2;
+create table t1 (sint64 bigint not null);
+insert into t1 values (-9223372036854775808);
+select * from t1;
+sint64
+-9223372036854775808
+drop table t1;
diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test
index 8a238d33e08..e5cd70209ea 100644
--- a/mysql-test/t/bigint.test
+++ b/mysql-test/t/bigint.test
@@ -107,4 +107,13 @@ t2.value64=t1.value64;
drop table t1, t2;
+# Test for BUG#30069, can't handle bigint -9223372036854775808 on
+# x86_64, with some GCC versions and optimizations.
+
+create table t1 (sint64 bigint not null);
+insert into t1 values (-9223372036854775808);
+select * from t1;
+
+drop table t1;
+
# End of 4.1 tests