~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/hello_world/hello_world.cc

  • Committer: Brian Aker
  • Date: 2009-02-26 05:21:02 UTC
  • mfrom: (896.1.5 fix-osxs)
  • Revision ID: brian@intel-mini-2.local-20090226052102-8xtbjt8kph6mi0qx
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class Item_func_hello_world : public Item_str_func
26
26
{
27
27
public:
 
28
  Item_func_hello_world() : Item_str_func() {}
28
29
  const char *func_name() const { return "hello_world"; }
29
30
  String *val_str(String* s) {
30
31
    s->set(STRING_WITH_LEN("Hello World!"),system_charset_info);