~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/display.cc

  • Committer: Brian Aker
  • Date: 2010-12-24 16:11:53 UTC
  • mfrom: (2023.2.3 bool)
  • Revision ID: brian@tangent.org-20101224161153-aq2tqgalzur623c9
Merge in BOOLEAN

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
static const std::string DRIZZLE_TYPE_ENUM("DRIZZLE_TYPE_ENUM"); 
53
53
static const std::string DRIZZLE_TYPE_BLOB("DRIZZLE_TYPE_BLOB"); 
54
54
static const std::string DRIZZLE_TYPE_UUID("DRIZZLE_TYPE_UUID"); 
 
55
static const std::string DRIZZLE_TYPE_BOOLEAN("DRIZZLE_TYPE_BOOLEAN"); 
55
56
 
56
57
static const std::string FIELD_ITEM("FIELD_ITEM");
57
58
static const std::string FUNC_ITEM("FUNC_ITEM");
227
228
    return DRIZZLE_TYPE_BLOB;
228
229
  case drizzled::DRIZZLE_TYPE_UUID : 
229
230
    return DRIZZLE_TYPE_UUID;
 
231
  case drizzled::DRIZZLE_TYPE_BOOLEAN : 
 
232
    return DRIZZLE_TYPE_BOOLEAN;
230
233
  }
231
234
 
232
235
  assert(0);