Hide Forgot
Description of problem: In bug #722966 there is a review for the possibility to get mydumper in Fedora/RedHat. In the Fedora 15 .spec file I notice a changelog entry which hides functions which are not part of the API. Unfortunately this hides my_net_read which is required by mydumper. This means that mydumper will compile in everything except Fedora 15. Can you please add my_net_read into your libmysql.version file? Version-Release number of selected component (if applicable): 5.5.8-1 onwards Additional info: See https://bugs.launchpad.net/mydumper/+bug/803982 and RedHat Bug #722966 for more information
The point of hiding the not-officially-exported functions is to make sure that applications won't break if/when mysql changes or removes such functions. It seems to me that mydumper is coding extremely unsafely if they depend on direct access to this function. I think the appropriate course here would be for them to persuade mysql upstream to add this function to the documented API. If it were documented I'd of course add it to the exported symbol list.
ok, I understand your point of view. There is another way but it will take a few months for me to develop. Thanks anyway.