Server IP : 104.21.38.3 / Your IP : 172.71.124.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/r/ |
Upload File : |
# # Bug 23333990 PERSISTENT INDEX STATISTICS UPDATE BEFORE # TRANSACTION IS COMMITTED # "Test 1:- Uncommited delete test" CREATE TABLE t1 (id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, val INT UNSIGNED NOT NULL, INDEX (val)) ENGINE=INNODB STATS_PERSISTENT=1,STATS_AUTO_RECALC=1; INSERT INTO t1 (val) VALUES (4); INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; INSERT INTO t1 (val) SELECT VAL from t1; SELECT COUNT(*) FROM t1; COUNT(*) 262144 Connection 1 START TRANSACTION; DELETE FROM t1; SELECT COUNT(*) FROM t1; Connection Default analyze table t1; Table Op Msg_type Msg_text test.t1 analyze status OK Test correctly estimates the number of rows as > 20000 even when in other uncommmited transaction all rows have been deleted. Connection 1 COUNT(*) 0 commit; Connection deafult Test 2:- Insert and rollback test CREATE TABLE t2 (id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, val INT UNSIGNED NOT NULL, INDEX (val)) ENGINE=INNODB STATS_PERSISTENT=1,STATS_AUTO_RECALC=1; Connection 1 START TRANSACTION; INSERT INTO t2 (val) VALUES (4); INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; INSERT INTO t2 (val) SELECT VAL from t2; SELECT COUNT(*) FROM t2; Connection default select count(*) from t2; count(*) 0 analyze table t2; Table Op Msg_type Msg_text test.t2 analyze status OK Test correctly estimates the number of rows as > 20000 even when in other uncommited transaction many rows are inserted. Connection 1 COUNT(*) 262144 Rollback the insert rollback; Connection default Test correctly estimates the number of rows as 1 after rollback. DROP TABLE t1,t2;