mirror of
https://github.com/MariaDB/server.git
synced 2025-02-19 03:45:35 +01:00
![Sergei Golubchik](/assets/img/avatar_default.png)
When a DSO is loaded we rewrite service pointers to point to the actual service structures. But when a DSO is unloaded, we have to restore their original values, in case this DSO wasn't removed from memory on dlclose() and is later loaded again.
16 lines
752 B
Text
16 lines
752 B
Text
#
|
|
# MDEV-4403 Attempting to use cassandra storage engine causes "service 'my_snprintf_service' interface version mismatch"
|
|
#
|
|
if (!$HA_CASSANDRA_SO) {
|
|
skip No Cassandra engine;
|
|
}
|
|
|
|
install soname 'ha_cassandra';
|
|
select plugin_name,plugin_status,plugin_library from information_schema.plugins where plugin_name = 'cassandra';
|
|
uninstall plugin cassandra;
|
|
select plugin_name,plugin_status,plugin_library from information_schema.plugins where plugin_name = 'cassandra';
|
|
install soname 'ha_cassandra';
|
|
select plugin_name,plugin_status,plugin_library from information_schema.plugins where plugin_name = 'cassandra';
|
|
uninstall plugin cassandra;
|
|
select plugin_name,plugin_status,plugin_library from information_schema.plugins where plugin_name = 'cassandra';
|
|
|