~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Patrick Galbraith
  • Date: 2008-08-22 02:02:51 UTC
  • Revision ID: patg@radha.local-20080822020251-850a6pusulhjk3ho
UlongĀ conversion

Show diffs side-by-side

added added

removed removed

Lines of Context:
1312
1312
  }
1313
1313
  case SQLCOM_SHOW_WARNS:
1314
1314
  {
1315
 
    res= mysqld_show_warnings(thd, (ulong)
 
1315
    res= mysqld_show_warnings(thd, (uint32_t)
1316
1316
                              ((1L << (uint) DRIZZLE_ERROR::WARN_LEVEL_NOTE) |
1317
1317
                               (1L << (uint) DRIZZLE_ERROR::WARN_LEVEL_WARN) |
1318
1318
                               (1L << (uint) DRIZZLE_ERROR::WARN_LEVEL_ERROR)
1321
1321
  }
1322
1322
  case SQLCOM_SHOW_ERRORS:
1323
1323
  {
1324
 
    res= mysqld_show_warnings(thd, (ulong)
 
1324
    res= mysqld_show_warnings(thd, (uint32_t)
1325
1325
                              (1L << (uint) DRIZZLE_ERROR::WARN_LEVEL_ERROR));
1326
1326
    break;
1327
1327
  }