mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
7e31279666
Fixed compiler warnings sql/sql_view.cc: Ensure that merged_for_insert is properly reset (Left of an old patch)
21 lines
739 B
Text
21 lines
739 B
Text
-- source include/have_innodb.inc
|
|
-- source include/big_test.inc
|
|
-- source include/not_embedded.inc
|
|
|
|
--disable_query_log
|
|
let $status_orig=`SELECT @@innodb_status_output`;
|
|
--enable_query_log
|
|
|
|
call mtr.add_suppression("Resizing redo log from *");
|
|
call mtr.add_suppression("Starting to delete and rewrite log files.");
|
|
call mtr.add_suppression("New log files created, LSN=*");
|
|
call mtr.add_suppression("Writer thread is waiting this semaphore");
|
|
|
|
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;
|
|
|
|
--disable_query_log
|
|
EVAL SET GLOBAL innodb_status_output = $status_orig;
|
|
--enable_query_log
|