~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/data_engine/schemas.h

Updates for table functions to insert tables into additional schemas;

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
public:
27
27
 
28
28
  SchemasTool();
29
 
  SchemasTool(const char *arg) :
30
 
    Tool(arg)
 
29
 
 
30
  SchemasTool(const char *schema_arg, const char *table_arg) :
 
31
    Tool(schema_arg, table_arg)
 
32
  { }
 
33
 
 
34
  SchemasTool(const char *table_arg) :
 
35
    Tool(table_arg)
31
36
  { }
32
37
 
33
38
  class Generator : public Tool::Generator