~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/version/versionudf.cc

  • Committer: Monty Taylor
  • Date: 2009-12-21 03:44:51 UTC
  • mto: (1253.2.3 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091221034451-hmztoep4qbaqne8w
Trims more out of server_includes.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#include <drizzled/server_includes.h>
21
21
#include <drizzled/function/str/strfunc.h>
22
22
#include <drizzled/plugin/function.h>
 
23
#include "drizzled/version.h"
23
24
 
24
25
using namespace std;
25
26
using namespace drizzled;
45
46
 
46
47
String *VersionFunction::val_str(String *str)
47
48
{
48
 
  str->set(drizzled_version().c_str(), drizzled_version().size(),
 
49
  str->set(version().c_str(), version().size(),
49
50
           system_charset_info);
50
51
  return str;
51
52
}