~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.h

merge trunk

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 */