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 | c4f1bec23da46678263302a98753f35f95374032 (patch) | |
tree | 3d744098b5aace6631abb6c22dae1cde38cdc798 /mysql-test/t/bigint.test | |
parent | b1d7d293f1246a0ae88bcaf9b918425b6ac6592b (diff) | |
download | mariadb-git-c4f1bec23da46678263302a98753f35f95374032.tar.gz |
Portability fix for AIX
Diffstat (limited to 'mysql-test/t/bigint.test')
-rw-r--r-- | mysql-test/t/bigint.test | 2 |
1 files changed, 1 insertions, 1 deletions
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; |