|
I report this because it seems a minor inconsinstency.
While file extension (.so or .dll) can now be omitted for [un]INSTALL SONAME, it is still required for SHOW PLUGINS SONAME:
MariaDB [test]> SHOW PLUGINS SONAME 'ha_sequence.dll';
|
+----------+--------+----------------+-----------------+---------+
|
| Name | Status | Type | Library | License |
|
+----------+--------+----------------+-----------------+---------+
|
| SEQUENCE | ACTIVE | STORAGE ENGINE | ha_sequence.dll | GPL |
|
+----------+--------+----------------+-----------------+---------+
|
1 row in set (0.09 sec)
|
MariaDB [test]> SHOW PLUGINS SONAME 'ha_sequence';
|
Empty set (0.05 sec)
|
|