~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/create.h

  • Committer: Monty Taylor
  • Date: 2009-03-20 04:05:09 UTC
  • mto: (950.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 958.
  • Revision ID: mordred@inaugust.com-20090320040509-o756h2t3m31xcrfp
Converted udf_func into a factory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#define DRIZZLE_SERVER_ITEM_CREATE_H
24
24
 
25
25
#include <drizzled/item/func.h>
26
 
 
27
 
struct udf_func;
 
26
#include <drizzled/function/create.h>
28
27
 
29
28
/**
30
29
  Public function builder interface.
141
140
    @param item_list The list of arguments to the function, can be NULL
142
141
    @return An item representing the parsed function call
143
142
  */
144
 
  Item *create(Session *session, udf_func *fct, List<Item> *item_list);
 
143
  Item *create(Session *session, Function_builder *fct, List<Item> *item_list);
145
144
 
146
145
  /** Singleton. */
147
146
  static Create_udf_func s_singleton;