~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-22 17:44:34 UTC
  • mto: This revision was merged to the branch mainline in revision 1873.
  • Revision ID: brian@tangent.org-20101022174434-q8fjovcpclzqer7n
TableShare is no longer in the house (i.e. we no longer directly have a copy
of it in cursor).

One more bit of the knot now gone.

Show diffs side-by-side

added added

removed removed

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