mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
5 lines
202 B
Text
5 lines
202 B
Text
|
create table foo (id varchar(37) not null, content longblob) engine=INNODB;
|
||
|
insert into foo (id, content) values('xyz', '');
|
||
|
update foo set content=repeat('a', 43941888) where id='xyz';
|
||
|
drop table foo;
|