mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-27048 UBSAN: runtime error: shift exponent 32 is too large for 32-bit type 'unsigned int'
32-bit variable must be expanded to 64-bit before shift left.
This commit is contained in:
@ -3422,3 +3422,13 @@ drop table t1;
|
||||
#
|
||||
alter table txxx engine=innodb, rename to tyyy;
|
||||
ERROR 42S02: Table 'test.txxx' doesn't exist
|
||||
#
|
||||
# MDEV-27048 UBSAN: runtime error: shift exponent 32 is too large for 32-bit type 'unsigned int'
|
||||
#
|
||||
CREATE TABLE t (a INT,b INT,c INT,x TEXT,y TEXT,z TEXT,id INT UNSIGNED AUTO_INCREMENT,i INT,KEY(id),UNIQUE KEY a (a,b,c));
|
||||
ALTER TABLE t ADD CONSTRAINT test UNIQUE (id) USING HASH;
|
||||
ERROR HY000: Function or expression 'AUTO_INCREMENT' cannot be used in the USING HASH clause of `id`
|
||||
DROP TABLE t;
|
||||
#
|
||||
# End of 10.7 tests
|
||||
#
|
||||
|
Reference in New Issue
Block a user