Plugin version is not correctly reported in information_schema
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
PBXT |
Fix Committed
|
Undecided
|
Vladimir Kolesnikov |
Bug Description
The version of the PBXT plugin 1.1 is not correctly reported in MySQL information_schema:
SELECT plugin_name, plugin_version, plugin_type_version
FROM INFORMATION_
WHERE plugin_name IN ('PBXT', 'InnoDB');
+------
| PLUGIN_NAME | PLUGIN_VERSION | PLUGIN_TYPE_VERSION |
+------
| PBXT | 0.1 | 50153.0 |
| InnoDB | 1.0 | 50153.0 |
...
| InnoDB | 1.1 | 50507.0 |
+------
I expect a version number like 1.1 or even 1.1.01 the same way as InnoDB plugin does.
Related branches
- PBXT Core: Pending requested
-
Diff: 45 lines (+6/-4)2 files modifiedChangeLog (+2/-0)
src/ha_pbxt.cc (+4/-4)
Changed in pbxt: | |
assignee: | nobody → Vladimir Kolesnikov (vkolesnikov) |
status: | New → In Progress |
Changed in pbxt: | |
status: | In Progress → Fix Committed |