blob: dcde9804cdc9a996fc5b303bb04fcafb2a78fdbc (
plain)
1
2
3
4
|
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;
|