mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-13227: Assertion failure len < 16384 in file rem0rec.cc line 1285
Crashes with innodb_page_size=64K. Does not crash at <= 32K. Problem was that when blob record that was earlier < 16k is enlarged at update wo that length > 16K it should be stored externally. However, that was not enforced when page-size = 64K (note that 16K+1 < 64K/2 i.e. half of the btree leaf page). btr_cur_optimistic_update: limit max record size to 16K or in REDUNDANT row format to 16K-1.
This commit is contained in:
6
mysql-test/suite/innodb/t/innodb-enlarge-blob.opt
Normal file
6
mysql-test/suite/innodb/t/innodb-enlarge-blob.opt
Normal file
@ -0,0 +1,6 @@
|
||||
--innodb-file-per-table
|
||||
--innodb-file-format='Barracuda'
|
||||
--innodb-buffer-pool-size=32M
|
||||
--innodb-log-file-size=32M
|
||||
--innodb-strict-mode=OFF
|
||||
|
Reference in New Issue
Block a user