~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_udf.h

  • Committer: Monty Taylor
  • Date: 2008-10-23 23:53:49 UTC
  • mto: This revision was merged to the branch mainline in revision 557.
  • Revision ID: monty@inaugust.com-20081023235349-317wgwqwgccuacmq
SplitĀ outĀ nested_join.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
/* This file defines structures needed by udf functions */
21
21
 
22
 
#ifdef USE_PRAGMA_INTERFACE
23
 
#pragma interface
24
 
#endif
25
22
 
26
23
#include "item_func.h"
27
24
 
38
35
void udf_init(void),udf_free(void);
39
36
udf_func *find_udf(const char *name, uint32_t len=0);
40
37
void free_udf(udf_func *udf);
41
 
int mysql_create_function(THD *thd,udf_func *udf);
 
38
int mysql_create_function(Session *session,udf_func *udf);