diff --git a/infoschema/tables.go b/infoschema/tables.go index d47bb0e007870..62691c334e1a0 100644 --- a/infoschema/tables.go +++ b/infoschema/tables.go @@ -632,15 +632,14 @@ func dataForProcesslist(ctx sessionctx.Context) [][]types.Datum { func dataForEngines() (records [][]types.Datum) { records = append(records, - types.MakeDatums("InnoDB", "DEFAULT", "Supports transactions, row-level locking, and foreign keys", "YES", "YES", "YES"), - types.MakeDatums("CSV", "YES", "CSV storage engine", "NO", "NO", "NO"), - types.MakeDatums("MRG_MYISAM", "YES", "Collection of identical MyISAM tables", "NO", "NO", "NO"), - types.MakeDatums("BLACKHOLE", "YES", "/dev/null storage engine (anything you write to it disappears)", "NO", "NO", "NO"), - types.MakeDatums("MyISAM", "YES", "MyISAM storage engine", "NO", "NO", "NO"), - types.MakeDatums("MEMORY", "YES", "Hash based, stored in memory, useful for temporary tables", "NO", "NO", "NO"), - types.MakeDatums("ARCHIVE", "YES", "Archive storage engine", "NO", "NO", "NO"), - types.MakeDatums("FEDERATED", "NO", "Federated MySQL storage engine", nil, nil, nil), - types.MakeDatums("PERFORMANCE_SCHEMA", "YES", "Performance Schema", "NO", "NO", "NO"), + types.MakeDatums( + "InnoDB", // Engine + "DEFAULT", // Support + "Supports transactions, row-level locking, and foreign keys", // Comment + "YES", // Transactions + "YES", // XA + "YES", // Savepoints + ), ) return records }