~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/item_cmpfunc.h

Removed/replaced DBUG symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
1088
1088
  int cmp(Item *item __attribute__((__unused__)))
1089
1089
  {
1090
1090
    // Should never be called
1091
 
    DBUG_ASSERT(0);
 
1091
    assert(0);
1092
1092
    return 1;
1093
1093
  }
1094
1094
  int compare(cmp_item *ci)
1216
1216
  void cleanup()
1217
1217
  {
1218
1218
    uint i;
1219
 
    DBUG_ENTER("Item_func_in::cleanup");
1220
1219
    Item_int_func::cleanup();
1221
1220
    delete array;
1222
1221
    array= 0;
1225
1224
      delete cmp_items[i];
1226
1225
      cmp_items[i]= 0;
1227
1226
    }
1228
 
    DBUG_VOID_RETURN;
 
1227
    return;
1229
1228
  }
1230
1229
  optimize_type select_optimize() const
1231
1230
    { return OPTIMIZE_KEY; }