| 296 | } |
| 297 | |
| 298 | static int wsrep_provider_plugin_deinit(void *p) |
| 299 | { |
| 300 | WSREP_DEBUG("wsrep_provider_plugin_deinit()"); |
| 301 | sys_var *my_var= find_sys_var(current_thd, "wsrep_provider_options"); |
| 302 | int flags= my_var->get_flags(); |
| 303 | my_var->update_flags(flags &= (int)~sys_var::READONLY); |
| 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | struct Mysql_replication wsrep_provider_plugin = { |
| 308 | MYSQL_REPLICATION_INTERFACE_VERSION |
nothing calls this directly
no test coverage detected