~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <fstream>
28
28
 
29
29
#include <drizzled/error.h>
30
 
#include <drizzled/global_charset_info.h>
 
30
#include <drizzled/charset.h>
31
31
#include <drizzled/internal/m_string.h>
32
32
#include <drizzled/internal/my_pthread.h>
33
33
#include <drizzled/message/table.h>
101
101
 
102
102
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
103
103
                             const drizzled::identifier::Schema &schema_identifier,
104
 
                             drizzled::identifier::Table::vector &set_of_identifiers);
 
104
                             drizzled::identifier::table::vector &set_of_identifiers);
105
105
};
106
106
 
107
107
void TableProtoTesterEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,
108
108
                                                   const drizzled::identifier::Schema &schema_identifier,
109
 
                                                   drizzled::identifier::Table::vector &set_of_identifiers)
 
109
                                                   drizzled::identifier::table::vector &set_of_identifiers)
110
110
{
111
111
  if (schema_identifier.compare("test"))
112
112
  {
362
362
  "TABLEPROTOTESTER",
363
363
  "1.0",
364
364
  "Stewart Smith",
365
 
  "Used to test rest of server with various table proto messages",
 
365
  N_("StorageEngine module for testing table proto messages"),
366
366
  PLUGIN_LICENSE_GPL,
367
 
  tableprototester_init,     /* Plugin Init */
368
 
  NULL,               /* depends */
369
 
  NULL                /* config options   */
 
367
  tableprototester_init,
 
368
  NULL,
 
369
  NULL
370
370
}
371
371
DRIZZLE_DECLARE_PLUGIN_END;