MariaDB [TRUNCATED]> show create table wp_actionscheduler_logs\G; *************************** 1. row *************************** Table: wp_actionscheduler_logs Create Table: CREATE TABLE `wp_actionscheduler_logs` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint(20) unsigned NOT NULL, `message` text NOT NULL, `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) ) ENGINE=InnoDB AUTO_INCREMENT=2887414 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci 1 row in set (0.000 sec) ERROR: No query specified MariaDB [TRUNCATED]> SHOW TABLE STATUS LIKE 'wp_actionscheduler_logs'\G; *************************** 1. row *************************** Name: wp_actionscheduler_logs Engine: InnoDB Version: 10 Row_format: Dynamic Rows: 889986 Avg_row_length: 73 Data_length: 65142784 Max_data_length: 0 Index_length: 48365568 Data_free: 6291456 Auto_increment: 2887414 Create_time: 2025-05-16 01:49:08 Update_time: 2025-06-02 16:45:49 Check_time: NULL Collation: utf8mb4_unicode_ci Checksum: NULL Create_options: Comment: Max_index_length: 0 Temporary: N 1 row in set (0.001 sec) ERROR: No query specified MariaDB [TRUNCATED]> SHOW INDEXES FROM wp_actionscheduler_logs; +-------------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment | Index_comment | Ignored | +-------------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+ | wp_actionscheduler_logs | 0 | PRIMARY | 1 | log_id | A | 889986 | NULL | NULL | | BTREE | | | NO | | wp_actionscheduler_logs | 1 | action_id | 1 | action_id | A | 889986 | NULL | NULL | | BTREE | | | NO | | wp_actionscheduler_logs | 1 | log_date_gmt | 1 | log_date_gmt | A | 296662 | NULL | NULL | YES | BTREE | | | NO | +-------------------------+------------+--------------+--------------+--------------+-----------+-------------+----------+--------+------+------------+---------+---------------+---------+ 3 rows in set (0.001 sec) MariaDB [TRUNCATED]> SELECT COUNT(*) wp_actionscheduler_logs; +-------------------------+ | wp_actionscheduler_logs | +-------------------------+ | 1 | +-------------------------+ 1 row in set (0.000 sec) MariaDB [TRUNCATED]> select * from wp_actionscheduler_logs limit 1; ### HANGS FOREVER ^C Ctrl-C -- query killed. ^C Ctrl-C -- connection killed. ERROR 2013 (HY000): Lost connection to server during query MariaDB [TRUNCATED]>