1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

small cleanup: udf_init()/udf_free() calls

This commit is contained in:
Sergei Golubchik
2015-12-07 15:15:43 +01:00
parent 859a7369c1
commit 79d08e682f
3 changed files with 8 additions and 13 deletions

View File

@ -143,5 +143,8 @@ udf_func *find_udf(const char *name, uint len=0,bool mark_used=0);
void free_udf(udf_func *udf);
int mysql_create_function(THD *thd,udf_func *udf);
int mysql_drop_function(THD *thd,const LEX_STRING *name);
#else
static inline void udf_init(void) { }
static inline void udf_free(void) { }
#endif
#endif /* SQL_UDF_INCLUDED */