mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 09:04:29 +02:00
Fixed bug in mysqlcheck when using --fast
Fixed problem when converting bigint to double. Fixed bug in count(distinct null) Fixed bug with empty BDB tables.
This commit is contained in:
parent
16d50ca46d
commit
72fb81e888
26 changed files with 218 additions and 409 deletions
|
|
@ -6,7 +6,11 @@ select 9223372036854775807,-009223372036854775808;
|
|||
select +9999999999999999999,-9999999999999999999;
|
||||
|
||||
drop table if exists t1;
|
||||
create table t1 (a bigint unsigned);
|
||||
insert into t1 values (18446744073709551615), (0xFFFFFFFFFFFFFFFF);
|
||||
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';
|
||||
delete from t1 where a=18446744073709551615;
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue