mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge remote-tracking branch '5.5' into 10.0
This commit is contained in:
@ -260,7 +260,7 @@ public:
|
||||
static void *operator new(size_t size, MEM_ROOT *mem_root)
|
||||
{ return (void*) alloc_root(mem_root, size); }
|
||||
static void operator delete(void *ptr_arg,size_t size)
|
||||
{ TRASH(ptr_arg, size); }
|
||||
{ TRASH_FREE(ptr_arg, size); }
|
||||
|
||||
sys_var_pluginvar(sys_var_chain *chain, const char *name_arg,
|
||||
struct st_mysql_sys_var *plugin_var_arg,
|
||||
@ -467,6 +467,11 @@ static st_plugin_dl *plugin_dl_insert_or_reuse(struct st_plugin_dl *plugin_dl)
|
||||
sizeof(struct st_plugin_dl));
|
||||
DBUG_RETURN(tmp);
|
||||
}
|
||||
#else
|
||||
static struct st_plugin_dl *plugin_dl_find(const LEX_STRING *)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif /* HAVE_DLOPEN */
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user