mirror of
https://github.com/MariaDB/server.git
synced 2025-07-05 19:08:12 +02:00

storage/innobase/handler/handler0alter.cc: for NEWDATE key_type says unsigned, thus col->prtype says unsigned, but field->flags says signed. Use the same flag for value retrieval that was used for value storage.
22 lines
809 B
Text
22 lines
809 B
Text
-- source include/have_innodb.inc
|
|
|
|
create table bug53290 (x bigint) engine=innodb;
|
|
|
|
insert into bug53290 () values (),(),(),(),(),(),(),(),(),(),(),();
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
insert into bug53290 select * from bug53290;
|
|
|
|
alter table bug53290 add unique index `idx` (x);
|
|
|
|
drop table bug53290;
|