| Summary: | undefined symbol: is_prefix | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Remi Collet <fedora> |
| Component: | perl-DBD-MySQL | Assignee: | Marcela Mašláňová <mmaslano> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 15 | CC: | mmaslano, ppisar, tgl |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | perl-DBD-MySQL-4.018-7.fc15 | Doc Type: | Bug Fix |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2011-05-19 04:46:03 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
Adding Tom Lane in CC: because this "could" be fixed in mysql package. But, probably a better solution should be to not used this function which is not in the offical MySQL client API. Yes, this is exactly the sort of gratuitous dependency on not-officially-exported internals of libmysqlclient that I was trying to get rid of by installing a symbol filter. Please change that code to use strncmp() or some such instead. (Or you could consider dropping support for mysql 3.x altogether; surely that hasn't been seen in the wild for some time ...) perl-DBD-MySQL-4.018-6.fc15 has been submitted as an update for Fedora 15. https://admin.fedoraproject.org/updates/perl-DBD-MySQL-4.018-6.fc15 Remi, could you please test this update and add karma? If it's working I'll send patch upstream. Package perl-DBD-MySQL-4.018-7.fc15: * should fix your issue, * was pushed to the Fedora 15 testing repository, * should be available at your local mirror within two days. Update it with: # su -c 'yum update --enablerepo=updates-testing perl-DBD-MySQL-4.018-7.fc15' as soon as you are able to. Please go to the following url: https://admin.fedoraproject.org/updates/perl-DBD-MySQL-4.018-7.fc15 then log in and leave karma (feedback). perl-DBD-MySQL-4.018-7.fc15 has been pushed to the Fedora 15 stable repository. If problems still persist, please make note of it in this bug report. |
Version-Release number of selected component (if applicable): mysql-5.5.10-2.fc15.x86_64 perl-DBD-MySQL-4.018-5.fc15.x86_64 Steps to Reproduce: 1. mysqlhotcopy -p=<secret> test test2 From DBD_MySQL source code case SQL_IDENTIFIER_QUOTE_CHAR: /*XXX What about a DB started in ANSI mode? */ /* Swiped from MyODBC's get_info.c */ using_322=is_prefix(mysql_get_server_info(imp_dbh->pmysql),"3.22"); retsv = newSVpv(!using_322 ? "`" : " ", 1); break; The is_prefix function, defined in strings/is_prefix.c is not exported from latest MySQL build.