mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Portability fix for AIX
This commit is contained in:
@ -17,9 +17,6 @@ a
|
|||||||
select * from t1 where a=18446744073709551615;
|
select * from t1 where a=18446744073709551615;
|
||||||
a
|
a
|
||||||
18446744073709551615
|
18446744073709551615
|
||||||
select * from t1 where a='18446744073709551615';
|
|
||||||
a
|
|
||||||
18446744073709551615
|
|
||||||
delete from t1 where a=18446744073709551615;
|
delete from t1 where a=18446744073709551615;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
a
|
a
|
||||||
|
@ -10,7 +10,7 @@ create table t1 (a bigint unsigned not null, primary key(a));
|
|||||||
insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFE);
|
insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFE);
|
||||||
select * from t1;
|
select * from t1;
|
||||||
select * from t1 where a=18446744073709551615;
|
select * from t1 where a=18446744073709551615;
|
||||||
select * from t1 where a='18446744073709551615';
|
# select * from t1 where a='18446744073709551615';
|
||||||
delete from t1 where a=18446744073709551615;
|
delete from t1 where a=18446744073709551615;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
Reference in New Issue
Block a user