~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/statement_transform.cc

  • Committer: Andrew Hutchings
  • Date: 2010-11-09 13:38:01 UTC
  • mto: (1919.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 1920.
  • Revision ID: andrew@linuxjedi.co.uk-20101109133801-byjzsao76346395x
Add FLUSH GLOBAL STATUS; command
Clears the global status variables for the server

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 
128
128
  switch (source.type())
129
129
  {
130
 
  case Statement::ROLLBACK_STATEMENT:
131
 
    {
132
 
      break;
133
 
    }
134
130
  case Statement::ROLLBACK:
135
131
    {
136
132
      sql_strings.push_back("ROLLBACK");
1353
1349
      destination.push_back(')');
1354
1350
      break;
1355
1351
    }
1356
 
  case Table::Field::UUID:
1357
 
    destination.append(" UUID", 5);
1358
 
    break;
1359
1352
  case Table::Field::INTEGER:
1360
1353
    destination.append(" INT", 4);
1361
1354
    break;
1510
1503
    return Table::Field::ENUM;
1511
1504
  case DRIZZLE_TYPE_BLOB:
1512
1505
    return Table::Field::BLOB;
1513
 
  case DRIZZLE_TYPE_UUID:
1514
 
    return Table::Field::UUID;
1515
1506
  }
1516
1507
 
1517
1508
  assert(false);