~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/utility_functions/functions.cc

  • Committer: Brian Aker
  • Date: 2010-12-30 06:23:25 UTC
  • mto: (2040.1.2 clean) (2041.2.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2041.
  • Revision ID: brian@tangent.org-20101230062325-u6wyrlk7px40i4z1
Adding typeof() method to determine drizzle type returns

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  context.add(new plugin::Create_function<utility_functions::ResultType>("result_type"));
34
34
  context.add(new plugin::Create_function<utility_functions::Kill>("kill"));
35
35
  context.add(new plugin::Create_function<utility_functions::Schema>("database"));
 
36
  context.add(new plugin::Create_function<utility_functions::Typeof>("typeof"));
36
37
  context.add(new plugin::Create_function<utility_functions::User>("user"));
37
38
 
38
39
  return 0;
42
43
{
43
44
  DRIZZLE_VERSION_ID,
44
45
  "Utility Functions",
45
 
  "1.3",
 
46
  "1.4",
46
47
  "Brian Aker, Stewart Smith",
47
48
  "Utility Functions.",
48
49
  PLUGIN_LICENSE_GPL,