mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
4 lines
169 B
Text
4 lines
169 B
Text
create table t1 (a blob, b varchar(20000)) engine=aria row_format=dynamic charset=latin1;
|
|
insert t1 (b) values (repeat('a', 20000));
|
|
update t1 set b='b';
|
|
drop table t1;
|