Returns the names of all indexes on a named table.
List<String> indexNamesForTable(String tableName) { final key = _findTableKey(tableName); return key != null ? (_tables[key]?.indexNames ?? []) : []; }