You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix the test failures in statement_spec.rb on MariaDB 10.5.
On MariaDB >= 10.0, the peformance schema is disabled.
https://jira.mariadb.org/browse/MDEV-6726
And on MariaDB 10.5, the followwing code used in the test doesn't
raise `Mysql2:Error`, just returning 0, even when if the performance_schema is disabled.
```
@client.query("SELECT COUNT(1) AS count FROM performance_schema.prepared_statements_instances")
```
0 commit comments