1178
42000
ER_CHECK_NOT_IMPLEMENTED
The storage engine for the table doesn't support %s
MariaDB differ in many ways, and not all operations are supported by each engine. Perhaps you don't need the intended operation for the engine, or perhaps you need a different storage engine. For example, don't support , as it's an unnecessary operation on a sequence table, which only contains one row.
CREATE SEQUENCE s START WITH 100 INCREMENT BY 10;
ANALYZE TABLE s;
+--------+---------+----------+----------------------------------------------------------+
| Table | Op | Msg_type | Msg_text |
+--------+---------+----------+----------------------------------------------------------+
| test.s | analyze | note | The storage engine for the table doesn't support analyze |
+--------+---------+----------+----------------------------------------------------------+This page is licensed: CC BY-SA / Gnu FDL