-
Notification
8000
s
You must be signed in to change notification settings - Fork 1.2k
mysql plugin: Failed to execute query: Unknown column 'status' in 'where clause #3533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Found commit that changed "status" column to "enabled": |
Self-Perfection
added a commit
to Self-Perfection/collectd
that referenced
this issue
Aug 29, 2020
In MariaDB 10.5 information_schema.innodb_metrics was cleaned: MariaDB/server@d09aec7 String column 'status' was replaced with boolean column 'enabled'. Therefore we need to modify request for fetching data from that table. Fixes collectd#3533
frankbielig
pushed a commit
to frankbielig/collectd
that referenced
this issue
Dec 9, 2020
In MariaDB 10.5 information_schema.innodb_metrics was cleaned: MariaDB/server@d09aec7 String column 'status' was replaced with boolean column 'enabled'. Therefore we need to modify request for fetching data from that table. Fixes collectd#3533
mrunge
pushed a commit
to mrunge/collectd
that referenced
this issue
Apr 23, 2021
In MariaDB 10.5 information_schema.innodb_metrics was cleaned: MariaDB/server@d09aec7 String column 'status' was replaced with boolean column 'enabled'. Therefore we need to modify request for fetching data from that table. Fixes collectd#3533
carlospeon
pushed a commit
to carlospeon/collectd
that referenced
this issue
Oct 17, 2022
In MariaDB 10.5 information_schema.innodb_metrics was cleaned: MariaDB/server@d09aec7 String column 'status' was replaced with boolean column 'enabled'. Therefore we need to modify request for fetching data from that table. Fixes collectd#3533
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After upgraded mariadb (10.4.13-1 -> 10.5.5-1) mysql plugins incessantly spews warnings:
Apparently schema of information_schema.innodb_metric in new mariadb thas changed:
It seems now
enabled
column should be used instead ofstatus
. Also note column type change.The text was updated successfully, but these errors were encountered: