~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/strfunc.cc

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
{
85
85
  assert(fixed == 1);
86
86
  int err;
87
 
  char buff[DECIMAL_LONGLONG_DIGITS];
 
87
  char buff[22];
88
88
  String *res, tmp(buff,sizeof(buff), &my_charset_bin);
89
89
  res= val_str(&tmp);
90
90
  return (res ?
106
106
  }
107
107
}
108
108
 
109
 
DRIZZLED_API String my_empty_string("",default_charset_info);
 
109
String my_empty_string("",default_charset_info);
110
110
 
111
111
} /* namespace drizzled */