mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.10 into 10.11
This commit is contained in:
@@ -5,12 +5,14 @@
|
||||
# sys_vars.innodb_monitor_enable_basic
|
||||
|
||||
--source include/have_innodb.inc
|
||||
set global innodb_monitor_disable = All;
|
||||
# Test turn on/off the monitor counter with "all" option
|
||||
# By default, they will be off.
|
||||
select name, if(enabled,'enabled','disabled') status
|
||||
from information_schema.innodb_metrics;
|
||||
|
||||
set global innodb_monitor_disable = All;
|
||||
select name from information_schema.innodb_metrics where enabled;
|
||||
|
||||
# Turn on all monitor counters
|
||||
set global innodb_monitor_enable = all;
|
||||
|
||||
|
@@ -28,4 +28,57 @@ XA END 'test';
|
||||
XA ROLLBACK 'test';
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-30483 After upgrade to 10.6 from Mysql 5.7 seeing "InnoDB: Column last_update in table mysql.innodb_table_stats is BINARY(4) NOT NULL but should be INT UNSIGNED NOT NULL"
|
||||
--echo #
|
||||
|
||||
# The following tests demonstrate that these columns:
|
||||
# - innodb_table_stats.last_update
|
||||
# - innodb_index_stats.last_update
|
||||
# have sane values close to NOW(), rather than any garbage,
|
||||
# with all TIMESTAMP formats.
|
||||
|
||||
--echo #
|
||||
--echo # Testing a non-default format: Field_timestamp0 - UINT4 based
|
||||
--echo #
|
||||
|
||||
SET @@global.mysql56_temporal_format=0;
|
||||
ALTER TABLE mysql.innodb_table_stats MODIFY last_update TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();
|
||||
ALTER TABLE mysql.innodb_index_stats MODIFY last_update TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();
|
||||
SHOW COLUMNS FROM mysql.innodb_table_stats LIKE 'last_update';
|
||||
SHOW COLUMNS FROM mysql.innodb_index_stats LIKE 'last_update';
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=1;
|
||||
|
||||
SELECT TIMESTAMPDIFF(DAY,last_update,now())<=1 FROM mysql.innodb_table_stats
|
||||
WHERE database_name='test' AND table_name='t1';
|
||||
SELECT TIMESTAMPDIFF(DAY,last_update,now())<=1 FROM mysql.innodb_index_stats
|
||||
WHERE database_name='test' AND table_name='t1' AND stat_name='size';
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # Now as the table t1 is dropped, expect no statistics
|
||||
--echo #
|
||||
|
||||
SELECT * FROM mysql.innodb_table_stats
|
||||
WHERE database_name='test' AND table_name='t1';
|
||||
SELECT * FROM mysql.innodb_index_stats
|
||||
WHERE database_name='test' AND table_name='t1' AND stat_name='size';
|
||||
|
||||
--echo #
|
||||
--echo # Testing with the default format: Field_timestampf - BINARY(4) based with the UNSIGNED_FLAG
|
||||
--echo #
|
||||
|
||||
SET @@global.mysql56_temporal_format=1;
|
||||
ALTER TABLE mysql.innodb_table_stats MODIFY last_update TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();
|
||||
ALTER TABLE mysql.innodb_index_stats MODIFY last_update TIMESTAMP NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp();
|
||||
SHOW COLUMNS FROM mysql.innodb_table_stats LIKE 'last_update';
|
||||
SHOW COLUMNS FROM mysql.innodb_index_stats LIKE 'last_update';
|
||||
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=1;
|
||||
SELECT TIMESTAMPDIFF(DAY,last_update,now())<=1 FROM mysql.innodb_table_stats
|
||||
WHERE database_name='test' AND table_name='t1';
|
||||
SELECT TIMESTAMPDIFF(DAY,last_update,now())<=1 FROM mysql.innodb_index_stats
|
||||
WHERE database_name='test' AND table_name='t1' AND stat_name='size';
|
||||
DROP TABLE t1;
|
||||
|
||||
|
||||
--echo # End of 10.6 tests
|
||||
|
Reference in New Issue
Block a user