mirror of
https://github.com/MariaDB/server.git
synced 2025-07-07 20:08:14 +02:00

- Suppress the "Difficult to find free blocks" warning globally to avoid many different test case failing. - Demote the error information in validate_first_page() to note. So first page can recovered from doublewrite buffer and can throw error in case the page wasn't found in doublewrite buffer.
9 lines
334 B
Text
9 lines
334 B
Text
SET @saved_debug = @@SESSION.debug_dbug;
|
|
SET SESSION debug_dbug="+d,ib_lru_force_no_free_page";
|
|
CREATE TABLE t1 (j LONGBLOB) ENGINE = InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (repeat('abcdefghijklmnopqrstuvwxyz',200));
|
|
COMMIT;
|
|
SET debug_dbug = @saved_debug;
|
|
DROP TABLE t1;
|
|
FOUND 1 /InnoDB: Difficult to find free blocks / in mysqld.1.err
|