~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/statement_transform.cc

  • Committer: Brian Aker
  • Date: 2010-12-24 08:41:24 UTC
  • mto: (2035.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2030.
  • Revision ID: brian@tangent.org-20101224084124-vn5kfak595ixt6rd
Merge in fixes for DD to make use of BOOLEAN as a type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1357
1357
    destination.append(" UUID", 5);
1358
1358
    break;
1359
1359
  case Table::Field::BOOLEAN:
1360
 
    destination.append(" BOOLEAN", 5);
 
1360
    destination.append(" BOOLEAN", 8);
1361
1361
    break;
1362
1362
  case Table::Field::INTEGER:
1363
1363
    destination.append(" INT", 4);
1384
1384
    destination.append(" DATETIME",  9);
1385
1385
    break;
1386
1386
  case Table::Field::TIME:
1387
 
    destination.append(" TIME",  9);
 
1387
    destination.append(" TIME",  5);
1388
1388
    break;
1389
1389
  }
1390
1390