SELECT VERSION();
|
+----------------+
|
| VERSION() |
|
+----------------+
|
| 10.2.6-MariaDB |
|
+----------------+
|
1 row in set (0.00 sec)
|
|
mysql [localhost] {msandbox} (test) > CREATE TABLESPACE `ts1` ADD DATAFILE 'ts1.ibd' ENGINE=INNODB;
|
Query OK, 0 rows affected, 1 warning (0.00 sec)
|
|
mysql [localhost] {msandbox} (test) > SHOW WARNINGS;
|
+---------+------+------------------------------------------------------------------------------------------------+
|
| Level | Code | Message |
|
+---------+------+------------------------------------------------------------------------------------------------+
|
| Warning | 1478 | Table storage engine 'InnoDB' does not support the create option 'TABLESPACE or LOGFILE GROUP' |
|
+---------+------+------------------------------------------------------------------------------------------------+
|
1 row in set (0.00 sec)
|