31
#include <drizzled/message/table.pb.h>
32
#include "drizzled/internal/m_string.h"
29
#include <drizzled/error.h>
30
#include <drizzled/global_charset_info.h>
31
#include <drizzled/internal/m_string.h>
32
#include <drizzled/internal/my_pthread.h>
33
#include <drizzled/message/table.h>
34
#include <drizzled/plugin/storage_engine.h>
35
#include <drizzled/table.h>
34
#include "drizzled/global_charset_info.h"
38
37
using namespace std;
58
57
table_definition_ext= TABLEPROTOTESTER_EXT;
61
virtual Cursor *create(Table &table)
60
virtual Cursor *create(TableShare &table,
61
drizzled::memory::Root *mem_root)
63
return new TableProtoTesterCursor(*this, table);
63
return new (mem_root) TableProtoTesterCursor(*this, table);
66
66
const char **bas_ext() const {
70
70
int doCreateTable(Session&,
72
const drizzled::identifier::Table &identifier,
72
drizzled::TableIdentifier &identifier,
73
73
drizzled::message::Table&);
75
int doDropTable(Session&, const drizzled::identifier::Table &identifier);
75
int doDropTable(Session&, drizzled::TableIdentifier &identifier);
77
77
int doGetTableDefinition(Session &session,
78
const drizzled::identifier::Table &identifier,
78
drizzled::TableIdentifier &identifier,
79
79
drizzled::message::Table &table_proto);
81
void doGetTableNames(drizzled::CachedDirectory &directory,
83
set<string>& set_of_names)
86
set_of_names.insert("t1");
81
90
/* The following defines can be increased if necessary */
82
91
uint32_t max_supported_keys() const { return 64; }
83
92
uint32_t max_supported_key_length() const { return 1000; }
95
bool doDoesTableExist(Session &session, const drizzled::identifier::Table &identifier);
104
bool doDoesTableExist(Session &session, TableIdentifier &identifier);
97
int doRenameTable(Session&, const drizzled::identifier::Table&, const drizzled::identifier::Table&)
106
int doRenameTable(Session&, TableIdentifier&, TableIdentifier&)
99
return HA_ERR_NO_SUCH_TABLE;
102
111
void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
103
const drizzled::identifier::Schema &schema_identifier,
104
drizzled::identifier::Table::vector &set_of_identifiers);
112
drizzled::SchemaIdentifier &schema_identifier,
113
drizzled::TableIdentifiers &set_of_identifiers);
107
116
void TableProtoTesterEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,
108
const drizzled::identifier::Schema &schema_identifier,
109
drizzled::identifier::Table::vector &set_of_identifiers)
117
drizzled::SchemaIdentifier &schema_identifier,
118
drizzled::TableIdentifiers &set_of_identifiers)
111
120
if (schema_identifier.compare("test"))
113
set_of_identifiers.push_back(identifier::Table(schema_identifier, "t1"));
114
set_of_identifiers.push_back(identifier::Table(schema_identifier, "too_many_enum_values"));
115
set_of_identifiers.push_back(identifier::Table(schema_identifier, "invalid_table_collation"));
122
set_of_identifiers.push_back(TableIdentifier(schema_identifier, "t1"));
123
set_of_identifiers.push_back(TableIdentifier(schema_identifier, "too_many_enum_values"));
119
bool TableProtoTesterEngine::doDoesTableExist(Session&, const drizzled::identifier::Table &identifier)
127
bool TableProtoTesterEngine::doDoesTableExist(Session&, TableIdentifier &identifier)
121
if (not identifier.getPath().compare("test/t1"))
123
if (not identifier.getPath().compare("test/too_many_enum_values"))
125
if (not identifier.getPath().compare("test/invalid_table_collation"))
129
if (strcmp(identifier.getPath().c_str(), "./test/t1") == 0)
131
if (strcmp(identifier.getPath().c_str(), "./test/too_many_enum_values") == 0)
131
137
TableProtoTesterCursor::TableProtoTesterCursor(drizzled::plugin::StorageEngine &engine_arg,
138
TableShare &table_arg) :
133
139
Cursor(engine_arg, table_arg)
146
152
int TableProtoTesterEngine::doCreateTable(Session&,
148
const drizzled::identifier::Table&,
154
drizzled::TableIdentifier&,
149
155
drizzled::message::Table&)
155
int TableProtoTesterEngine::doDropTable(Session&, const drizzled::identifier::Table&)
161
int TableProtoTesterEngine::doDropTable(Session&, drizzled::TableIdentifier&)
157
return HA_ERR_NO_SUCH_TABLE;
160
166
static void fill_table1(message::Table &table)
187
193
table.mutable_engine()->set_name("tableprototester");
188
194
table.set_creation_timestamp(0);
189
195
table.set_update_timestamp(0);
191
198
tableopts= table.mutable_options();
192
199
tableopts->set_comment("Table with too many enum options");
193
tableopts->set_collation("utf8_general_ci");
194
tableopts->set_collation_id(45);
197
202
field= table.add_field();
212
static void fill_table_invalid_table_collation(message::Table &table)
214
message::Table::Field *field;
215
message::Table::TableOptions *tableopts;
217
table.set_name("invalid_table_collation");
218
table.set_type(message::Table::STANDARD);
219
table.set_schema("test");
220
table.set_creation_timestamp(0);
221
table.set_update_timestamp(0);
222
table.mutable_engine()->set_name("tableprototester");
224
tableopts= table.mutable_options();
225
tableopts->set_comment("Invalid table collation ");
228
field= table.add_field();
229
field->set_name("number");
230
field->set_type(message::Table::Field::INTEGER);
233
tableopts->set_collation("pi_pi_pi");
234
tableopts->set_collation_id(123456);
238
218
int TableProtoTesterEngine::doGetTableDefinition(Session&,
239
const drizzled::identifier::Table &identifier,
219
drizzled::TableIdentifier &identifier,
240
220
drizzled::message::Table &table_proto)
242
if (not identifier.getPath().compare("test/t1"))
222
if (strcmp(identifier.getPath().c_str(), "./test/t1") == 0)
244
224
fill_table1(table_proto);
247
else if (not identifier.getPath().compare("test/too_many_enum_values"))
227
else if (strcmp(identifier.getPath().c_str(), "./test/too_many_enum_values")==0)
249
229
fill_table_too_many_enum_values(table_proto);
252
else if (not identifier.getPath().compare("test/invalid_table_collation"))
254
fill_table_invalid_table_collation(table_proto);
365
340
"Used to test rest of server with various table proto messages",
366
341
PLUGIN_LICENSE_GPL,
367
342
tableprototester_init, /* Plugin Init */
343
NULL, /* system variables */
369
344
NULL /* config options */
371
346
DRIZZLE_DECLARE_PLUGIN_END;