| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/r/ |
Upload File : |
CREATE PROCEDURE create_table_and_insert_rows() BEGIN DECLARE count INT; SET count = 1; SELECT SLEEP(10); CREATE TABLE t1 (f1 INT); INSERT INTO t1 VALUES (7894); WHILE count <= 5 DO INSERT INTO t1 SELECT * FROM t1; SET count = count + 1; END WHILE; SET count = 1; WHILE count <= 10000 DO SELECT SQL_NO_CACHE count(*) from t1; SET count = count + 1; END WHILE; END $ CALL create_table_and_insert_rows(); SELECT SLEEP(4); Dynamic tracing ...... started. query-parse-start : 1 query-parse-done : 1 select-start : 1 select-done : 1 net-read-start : 1 net-read-done : 1 handler_rdlock_start : 1 handler_rdlock_done : 1 Expected probe hits : 8 Actual probe hits : 8 Dynamic tracing ...... completed. DROP TABLE t1; DROP PROCEDURE create_table_and_insert_rows;