~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_udf.cc

Merged from jay.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
/* This implements 'user defined functions' */
17
 
 
18
 
/*
19
 
   Known bugs:
20
 
  
21
 
*/
22
 
 
23
 
#ifdef USE_PRAGMA_IMPLEMENTATION
24
 
#pragma implementation                          // gcc: Class implementation
25
 
#endif
26
 
 
27
 
#include "mysql_priv.h"
28
 
#include <mysys/my_pthread.h>
29
 
 
30
 
extern "C"
31
 
{
32
 
#include <stdarg.h>
33
 
#include <mysys/hash.h>
34
 
}
 
17
#include <drizzled/server_includes.h>
35
18
 
36
19
static bool udf_startup= false; /* We do not lock because startup is single threaded */
37
20
static MEM_ROOT mem;