mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@@ -3318,3 +3318,20 @@ c1 c2
|
||||
9 3
|
||||
DROP TABLE t1;
|
||||
DROP TABLE t2;
|
||||
#
|
||||
# MDEV-24748 Extern field check missing
|
||||
# in btr_index_rec_validate()
|
||||
#
|
||||
CREATE TABLE t1 (pk INT, c1 char(255),
|
||||
c2 char(255), c3 char(255), c4 char(255),
|
||||
c5 char(255), c6 char(255), c7 char(255),
|
||||
c8 char(255), primary key (pk)
|
||||
) CHARACTER SET utf32 ENGINE=InnoDB;
|
||||
INSERT INTO t1 VALUES
|
||||
(1, 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'),
|
||||
(2, 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p');
|
||||
CHECK TABLE t1;
|
||||
Table Op Msg_type Msg_text
|
||||
test.t1 check status OK
|
||||
ALTER TABLE t1 FORCE;
|
||||
DROP TABLE t1;
|
||||
|
Reference in New Issue
Block a user