I enabled logging using:
SET GLOBAL log_output = \'TABLE\';
SET GLOBAL general_log = \'ON\';
All executed queries was lo
Recreate table in MySQL 8.0.17:
use mysql;
CREATE TABLE general_log(
event_time timestamp(6) NOT NULL ,
user_host mediumtext NOT NULL,
thread_id bigint(21) unsigned NOT NULL,
server_id int unsigned NOT NULL,
command_type varchar(64) NOT NULL,
argument mediumblob NOT NULL
) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log';