~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.h

  • Committer: LinuxJedi
  • Date: 2010-09-09 06:14:45 UTC
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100909061445-1jz91d5eed932616
Fix another wrong header, grr...

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
namespace plugin
45
45
{
46
46
 
47
 
#define TABLE_FUNCTION_BLOB_SIZE 2049
48
 
 
49
47
// Not thread safe, but plugins are just loaded in a single thread right
50
48
// now.
51
49
static const char *local_string_append(const char *arg1, const char *arg2)
76
74
 
77
75
  void init();
78
76
 
79
 
 
80
77
public:
81
78
  TableFunction(const char *schema_arg, const char *table_arg) :
82
79
    Plugin(local_string_append(schema_arg, table_arg) , "TableFunction"),
184
181
                 TableFunction::ColumnType type,
185
182
                 uint32_t field_length,
186
183
                 bool is_default_null= false);
187
 
 
188
 
  virtual bool visable() { return true; }
189
184
};
190
185
 
191
186
} /* namespace plugin */