diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-08 22:12:03 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-08 22:12:03 +0300 |
commit | 3eade0b592148f68add40b4298c36f4d9a4134b5 (patch) | |
tree | 3d744098b5aace6631abb6c22dae1cde38cdc798 | |
parent | 09fa78703b7fceddca1cf2c896a5643cacaff5d5 (diff) | |
download | mariadb-git-3eade0b592148f68add40b4298c36f4d9a4134b5.tar.gz |
Portability fix for AIX
-rw-r--r-- | mysql-test/r/bigint.result | 3 | ||||
-rw-r--r-- | mysql-test/t/bigint.test | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/mysql-test/r/bigint.result b/mysql-test/r/bigint.result index f2cb6437f8f..f666c5311b8 100644 --- a/mysql-test/r/bigint.result +++ b/mysql-test/r/bigint.result @@ -17,9 +17,6 @@ a select * from t1 where a=18446744073709551615; a 18446744073709551615 -select * from t1 where a='18446744073709551615'; -a -18446744073709551615 delete from t1 where a=18446744073709551615; select * from t1; a diff --git a/mysql-test/t/bigint.test b/mysql-test/t/bigint.test index cec3e1ca45c..535bf0e4a60 100644 --- a/mysql-test/t/bigint.test +++ b/mysql-test/t/bigint.test @@ -10,7 +10,7 @@ create table t1 (a bigint unsigned not null, primary key(a)); insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFE); select * from t1; select * from t1 where a=18446744073709551615; -select * from t1 where a='18446744073709551615'; +# select * from t1 where a='18446744073709551615'; delete from t1 where a=18446744073709551615; select * from t1; drop table t1; |