MySQL 8.4 Release Notes
17.1.3 验证 InnoDB 是否为默认存储引擎
Issue a SHOW ENGINES statement to view the available MySQL storage engines. Look for DEFAULT in the SUPPORT column.
mysql> SHOW ENGINES;
Alternatively, query the Information Schema ENGINES table.
mysql> SELECT * FROM INFORMATION_SCHEMA.ENGINES;