~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/version/versionudf.cc

  • Committer: mordred
  • Date: 2010-04-20 00:00:46 UTC
  • mfrom: (1471.5.3 more-valgrind)
  • mto: This revision was merged to the branch mainline in revision 1498.
  • Revision ID: mordred@orisndriz09-20100420000046-263x5hazl0huw8u3
MergedĀ inĀ more-valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
String *VersionFunction::val_str(String *str)
48
48
{
49
 
  str->set(version().c_str(), version().size(),
 
49
  str->set(::drizzled::version().c_str(), ::drizzled::version().size(),
50
50
           system_charset_info);
51
51
  return str;
52
52
}