~mohyt/drizzle/json_server_schema

« back to all changes in this revision

Viewing changes to drizzled/message.cc

  • Committer: Continuous Integration
  • Date: 2013-07-03 01:12:18 UTC
  • mfrom: (2631.3.1 lsm-index-type)
  • Revision ID: ci@drizzle.org-20130703011218-vjrgeiqywqjc9jqz
Merge lp:~stewart/drizzle/lsmtree Build: jenkins-Drizzle-Builder-220

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
static const std::string RTREE("RTREE");
69
69
static const std::string HASH("HASH");
70
70
static const std::string FULLTEXT("FULLTEXT");
 
71
static const std::string LSMTREE("LSMTREE");
71
72
 
72
73
static const std::string MATCH_FULL("FULL");
73
74
static const std::string MATCH_PARTIAL("PARTIAL");
227
228
    return HASH;
228
229
  case message::Table::Index::FULLTEXT:
229
230
    return FULLTEXT;
 
231
  case message::Table::Index::LSMTREE:
 
232
    return LSMTREE;
230
233
  }
231
234
 
232
235
  assert(0);