~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.h

  • Committer: Brian Aker
  • Date: 2010-10-24 11:37:53 UTC
  • mfrom: (1874.2.4 bison)
  • Revision ID: brian@tangent.org-20101024113753-sdw59ktv6lyk0r22
Merge in show update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 
77
77
  void init();
78
78
 
 
79
 
79
80
public:
80
81
  TableFunction(const char *schema_arg, const char *table_arg) :
81
82
    Plugin(local_string_append(schema_arg, table_arg) , "TableFunction"),
183
184
                 TableFunction::ColumnType type,
184
185
                 uint32_t field_length,
185
186
                 bool is_default_null= false);
 
187
 
 
188
  virtual bool visable() { return true; }
186
189
};
187
190
 
188
191
} /* namespace plugin */