| 251 | */ |
| 252 | |
| 253 | static void del_dbopt(const char *path) |
| 254 | { |
| 255 | my_dbopt_t *opt; |
| 256 | mysql_rwlock_wrlock(&LOCK_dboptions); |
| 257 | if ((opt= (my_dbopt_t *)my_hash_search(&dboptions, (const uchar*) path, |
| 258 | strlen(path)))) |
| 259 | my_hash_delete(&dboptions, (uchar*) opt); |
| 260 | mysql_rwlock_unlock(&LOCK_dboptions); |
| 261 | } |
| 262 | |
| 263 | /* |
| 264 | Load database options file |
nothing calls this directly
no test coverage detected