Details
-
Bug
-
Status: Closed (View Workflow)
-
Trivial
-
Resolution: Fixed
-
10.0.12
-
None
Description
I issued something like this:
MariaDB [test]> CREATE OR REPLACE TABLE target (id INT PRIMARY KEY) ENGINE = InnoDB; |
Query OK, 0 rows affected (0.44 sec) |
 |
MariaDB [test]> CREATE OR REPLACE TABLE xyzzy |
-> ENGINE = CONNECT |
-> TABLE_TYPE = MYSQL
|
-> CONNECTION = 'root:root@127.0.0.1/test/target' |
-> ;
|
ERROR 1105 (HY000): This MySQL table is defined on itself |
I forgot "mysql://" in CONNECTION, but the error is misleading.