~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.cc

  • Committer: Brian Aker
  • Date: 2010-12-16 04:01:22 UTC
  • mfrom: (1996.2.1 compare)
  • Revision ID: brian@tangent.org-20101216040122-eodh5shwsij35ybe
Merge in uuid tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
static const std::string DATE("DATE");
49
49
static const std::string TIMESTAMP("TIMESTAMP");
50
50
static const std::string DATETIME("DATETIME");
 
51
static const std::string UUID("UUID");
51
52
 
52
53
static const std::string UNDEFINED("UNDEFINED");
53
54
static const std::string RESTRICT("RESTRICT");
142
143
    return TIMESTAMP;
143
144
  case message::Table::Field::DATETIME:
144
145
    return DATETIME;
 
146
  case message::Table::Field::UUID:
 
147
    return UUID;
145
148
  }
146
149
 
147
150
  assert(0);