~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message.cc

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
  return NO_ACTION;
208
208
}
209
209
 
210
 
// This matches SQL standard of using YES/NO not the normal TRUE/FALSE
211
 
const std::string &type(bool type)
212
 
{
213
 
  return type ? YES : NO;
214
 
}
215
 
 
216
210
const std::string &type(drizzled::message::Table::Index::IndexType type)
217
211
{
218
212
  switch (type)