Commit d06b2ee9 authored by unknown's avatar unknown

sql_udf.cc:

  Comment changes: use standard style; fix grammar.


sql/sql_udf.cc:
  Comment changes: use standard style; fix grammar.
parent 37a29244
...@@ -17,15 +17,15 @@ ...@@ -17,15 +17,15 @@
/* This implements 'user defined functions' */ /* This implements 'user defined functions' */
/* /*
** Known bugs: Known bugs:
**
** Memory for functions are never freed! Memory for functions is never freed!
** Shared libraries are not closed before mysqld exists; Shared libraries are not closed before mysqld exits;
** - This is because we can't be sure if some threads is using - This is because we can't be sure if some threads are using
** a functions. a function.
**
** The buggs only affects applications that creates and frees a lot of The bugs only affect applications that create and free a lot of
** dynamic functions, so this shouldn't be a real problem. dynamic functions, so this shouldn't be a real problem.
*/ */
#ifdef __GNUC__ #ifdef __GNUC__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment