Bug 1929713
| Summary: | rubygem-mysql2 fails on mariadb 10.5, but does not on 10.4 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Jun Aruga <jaruga> |
| Component: | mariadb | Assignee: | Michal Schorm <mschorm> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 35 | CC: | damien.ciabrini, hhorak, ljavorsk, mbayer, mkocka, mmuzila, mschorm, SpikeFedora |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2021-08-10 15:25:40 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Jun Aruga
2021-02-17 13:37:21 UTC
This bug appears to have been reported against 'rawhide' during the Fedora 35 development cycle. Changing version to 35. The test failures on rubygem-mysql2 came from the MariaDB 10.5 change. 1. `SELECT COUNT(1) AS count FROM performance_schema.prepared_statements_instances` returns 0 without error even when performance_schema is OFF on MariaDB 10.5 `` MariaDB [test]> SHOW VARIABLES LIKE 'performance_schema'; +--------------------+-------+ | Variable_name | Value | +--------------------+-------+ | performance_schema | OFF | +--------------------+-------+ 1 row in set (0.002 sec) ``` 2. An error message including Unicode was changed on MariaDB 10.5. See <https://jira.mariadb.org/browse/MDEV-25400>. On rubygem-mysql2, we could fix the test failures properly. https://github.com/brianmario/mysql2/pull/1193 |