diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-08 22:09:25 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-08 22:09:25 +0300 |
commit | e295dd2974adff13f069d01bfceee27e77882537 (patch) | |
tree | cbf3a5e46616b11a0d5a95d543b661b383b60ebd /mysql-test/t/bigint.test | |
parent | c530371bdcd44b0d73b987c14242e39c90c6f113 (diff) | |
download | mariadb-git-e295dd2974adff13f069d01bfceee27e77882537.tar.gz |
Portability fix for AIX
include/my_sys.h:
Removed redefine of alloca with GCC
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 6470b6f6a30..cd2fadc7f29 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; |