Pergunta

Can we create a table in MariaDB 10.2 with XtraDB engine?

I have installed MariaDB 10.2 and I am trying to create a table with storage engine XtraDB and I am getting error

*mysql> CREATE TABLE T1(ID smallint(6),NAME varchar(30)) ENGINE=XtraDB;

ERROR 1286 (42000): Unknown storage engine 'XtraDB'

If I lists the engines of MariaDB here, there are no XtraDB engine type available.

Part of show engines output:

enter image description here

Foi útil?

Solução

As far as I understand, the answer is no, you can't use XtraDB in MariaDB 10.2. From the Changes & Improvements in MariaDB 10.2 page:

XtraDB in 10.2 is not up to date with the latest features of InnoDB and cannot be used. As the InnoDB on disk format is identical to XtraDB's this will not cause any problems when upgrading to MariaDB 10.2. See Why does MariaDB 10.2 use InnoDB instead of XtraDB?

Licenciado em: CC-BY-SA com atribuição
Não afiliado a dba.stackexchange
scroll top