Server IP : 172.67.216.182 / Your IP : 108.162.227.19 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/innodb/t/ |
Upload File : |
# # Bug#12429573 TIMESTAMP COLUMN OF INNODB.INDEX_STATS ARE NOT UPDATED # WHEN RE-RUNNING ANALYZE # -- source include/have_innodb.inc -- source include/not_embedded.inc CREATE TABLE bug12429573 (i INTEGER PRIMARY KEY, j INTEGER, KEY(j)) ENGINE=INNODB STATS_PERSISTENT=1; ANALYZE TABLE bug12429573; # Cannot check the exact timestamp here because it is always different # but at least check that both timestamps in innodb_table_stats and in # innodb_index_stats have been updated to the same value. If the bug is # present this check will fail. SELECT last_update FROM mysql.innodb_index_stats WHERE table_name = 'bug12429573' AND last_update NOT IN (SELECT last_update FROM mysql.innodb_table_stats WHERE table_name = 'bug12429573'); # The first ANALYZE would insert timestamp e.g. 17:23:39 in both # innodb_table_stats and innodb_index_stats. The bug is that the second # ANALYZE only updates the timestamp in innodb_table_stats. In order to # check if the timestamp in innodb_index_stats has really been updated we # need it to be different from the previous one (17:23:39) with at least # one second. -- sleep 1 ANALYZE TABLE bug12429573; # If the bug is present we get the timestamps different here. SELECT last_update FROM mysql.innodb_index_stats WHERE table_name = 'bug12429573' AND last_update NOT IN (SELECT last_update FROM mysql.innodb_table_stats WHERE table_name = 'bug12429573'); DROP TABLE bug12429573;