~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/tableprototester/tableprototester.cc

  • Committer: Stewart Smith
  • Date: 2010-06-16 14:17:58 UTC
  • mto: (1626.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1633.
  • Revision ID: stewart@flamingspork.com-20100616141758-odpf36m0wo09ok4c
add handler_write status variable test for when statement was rolled back

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
*/
18
18
 
19
19
#include "config.h"
 
20
#include <drizzled/table.h>
 
21
#include <drizzled/error.h>
 
22
#include "drizzled/internal/my_pthread.h"
20
23
 
21
24
#include "tableprototester.h"
22
25
 
25
28
#include <string>
26
29
#include <map>
27
30
#include <fstream>
 
31
#include <drizzled/message/table.pb.h>
 
32
#include "drizzled/internal/m_string.h"
28
33
 
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"
36
35
 
37
36
 
38
37
using namespace std;
58
57
    table_definition_ext= TABLEPROTOTESTER_EXT;
59
58
  }
60
59
 
61
 
  virtual Cursor *create(Table &table)
 
60
  virtual Cursor *create(TableShare &table,
 
61
                         drizzled::memory::Root *mem_root)
62
62
  {
63
 
    return new TableProtoTesterCursor(*this, table);
 
63
    return new (mem_root) TableProtoTesterCursor(*this, table);
64
64
  }
65
65
 
66
66
  const char **bas_ext() const {
69
69
 
70
70
  int doCreateTable(Session&,
71
71
                    Table&,
72
 
                    const drizzled::identifier::Table &identifier,
 
72
                    drizzled::TableIdentifier &identifier,
73
73
                    drizzled::message::Table&);
74
74
 
75
 
  int doDropTable(Session&, const drizzled::identifier::Table &identifier);
 
75
  int doDropTable(Session&, drizzled::TableIdentifier &identifier);
76
76
 
77
77
  int doGetTableDefinition(Session &session,
78
 
                           const drizzled::identifier::Table &identifier,
 
78
                           drizzled::TableIdentifier &identifier,
79
79
                           drizzled::message::Table &table_proto);
80
80
 
 
81
  void doGetTableNames(drizzled::CachedDirectory &directory,
 
82
                       SchemaIdentifier &,
 
83
                       set<string>& set_of_names)
 
84
  {
 
85
    (void)directory;
 
86
    set_of_names.insert("t1");
 
87
 
 
88
  }
 
89
 
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; }
92
101
            HA_KEYREAD_ONLY);
93
102
  }
94
103
 
95
 
  bool doDoesTableExist(Session &session, const drizzled::identifier::Table &identifier);
 
104
  bool doDoesTableExist(Session &session, TableIdentifier &identifier);
96
105
 
97
 
  int doRenameTable(Session&, const drizzled::identifier::Table&, const drizzled::identifier::Table&)
 
106
  int doRenameTable(Session&, TableIdentifier&, TableIdentifier&)
98
107
  {
99
 
    return HA_ERR_NO_SUCH_TABLE;
 
108
    return EPERM;
100
109
  }
101
110
 
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);
105
114
};
106
115
 
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)
110
119
{
111
120
  if (schema_identifier.compare("test"))
112
121
  {
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"));
116
124
  }
117
125
}
118
126
 
119
 
bool TableProtoTesterEngine::doDoesTableExist(Session&, const drizzled::identifier::Table &identifier)
 
127
bool TableProtoTesterEngine::doDoesTableExist(Session&, TableIdentifier &identifier)
120
128
{
121
 
  if (not identifier.getPath().compare("test/t1"))
122
 
    return true;
123
 
  if (not identifier.getPath().compare("test/too_many_enum_values"))
124
 
    return true;
125
 
  if (not identifier.getPath().compare("test/invalid_table_collation"))
 
129
  if (strcmp(identifier.getPath().c_str(), "./test/t1") == 0)
 
130
    return true;
 
131
  if (strcmp(identifier.getPath().c_str(), "./test/too_many_enum_values") == 0)
126
132
    return true;
127
133
 
128
134
  return false;
129
135
}
130
136
 
131
137
TableProtoTesterCursor::TableProtoTesterCursor(drizzled::plugin::StorageEngine &engine_arg,
132
 
                                               Table &table_arg) :
 
138
                           TableShare &table_arg) :
133
139
  Cursor(engine_arg, table_arg)
134
140
{ }
135
141
 
145
151
 
146
152
int TableProtoTesterEngine::doCreateTable(Session&,
147
153
                                          Table&,
148
 
                                          const drizzled::identifier::Table&,
 
154
                                          drizzled::TableIdentifier&,
149
155
                                          drizzled::message::Table&)
150
156
{
151
157
  return EEXIST;
152
158
}
153
159
 
154
160
 
155
 
int TableProtoTesterEngine::doDropTable(Session&, const drizzled::identifier::Table&)
 
161
int TableProtoTesterEngine::doDropTable(Session&, drizzled::TableIdentifier&)
156
162
{
157
 
  return HA_ERR_NO_SUCH_TABLE;
 
163
  return EPERM;
158
164
}
159
165
 
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);
 
196
  
190
197
 
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);
195
200
 
196
201
  {
197
202
    field= table.add_field();
209
214
 
210
215
}
211
216
 
212
 
static void fill_table_invalid_table_collation(message::Table &table)
213
 
{
214
 
  message::Table::Field *field;
215
 
  message::Table::TableOptions *tableopts;
216
 
 
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");
223
 
 
224
 
  tableopts= table.mutable_options();
225
 
  tableopts->set_comment("Invalid table collation ");
226
 
 
227
 
  {
228
 
    field= table.add_field();
229
 
    field->set_name("number");
230
 
    field->set_type(message::Table::Field::INTEGER);
231
 
  }
232
 
 
233
 
  tableopts->set_collation("pi_pi_pi");
234
 
  tableopts->set_collation_id(123456);
235
 
 
236
 
}
237
217
 
238
218
int TableProtoTesterEngine::doGetTableDefinition(Session&,
239
 
                                                 const drizzled::identifier::Table &identifier,
 
219
                                                 drizzled::TableIdentifier &identifier,
240
220
                                                 drizzled::message::Table &table_proto)
241
221
{
242
 
  if (not identifier.getPath().compare("test/t1"))
 
222
  if (strcmp(identifier.getPath().c_str(), "./test/t1") == 0)
243
223
  {
244
224
    fill_table1(table_proto);
245
225
    return EEXIST;
246
226
  }
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)
248
228
  {
249
229
    fill_table_too_many_enum_values(table_proto);
250
230
    return EEXIST;
251
231
  }
252
 
  else if (not identifier.getPath().compare("test/invalid_table_collation"))
253
 
  {
254
 
    fill_table_invalid_table_collation(table_proto);
255
 
    return EEXIST;
256
 
  }
257
232
  return ENOENT;
258
233
}
259
234
 
264
239
 
265
240
int TableProtoTesterCursor::doInsertRecord(unsigned char *)
266
241
{
267
 
  return(getTable()->next_number_field ? update_auto_increment() : 0);
 
242
  return(table->next_number_field ? update_auto_increment() : 0);
268
243
}
269
244
 
270
245
int TableProtoTesterCursor::doStartTableScan(bool)
365
340
  "Used to test rest of server with various table proto messages",
366
341
  PLUGIN_LICENSE_GPL,
367
342
  tableprototester_init,     /* Plugin Init */
368
 
  NULL,               /* depends */
 
343
  NULL,               /* system variables */
369
344
  NULL                /* config options   */
370
345
}
371
346
DRIZZLE_DECLARE_PLUGIN_END;