~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_udf.cc

  • Committer: lbieber
  • Date: 2009-07-28 15:08:13 UTC
  • mfrom: (1100 staging)
  • mto: (1093.1.34 captain)
  • mto: This revision was merged to the branch mainline in revision 1105.
  • Revision ID: lbieber@lbieber-laptop-20090728150813-vdmchh23gbrtbo4b
fix read_many_rows_innodb test to use InnoDB instead of MyISAM for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
static drizzled::Registry<Function_builder *> udf_registry;
28
28
 
29
 
/* This is only called if using_udf_functions != 0 */
30
29
Function_builder *find_udf(const char *name, uint32_t length)
31
30
{
32
31
  return udf_registry.find(name, length);