~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_record.cc

  • Committer: Monty Taylor
  • Date: 2008-09-22 23:53:43 UTC
  • mto: This revision was merged to the branch mainline in revision 417.
  • Revision ID: monty@inaugust.com-20080922235343-ihqvp6g9k1mtzxmc
Renamed max/min.

Show diffs side-by-side

added added

removed removed

Lines of Context:
252
252
    (tabledef not NULL). If tabledef is NULL then it is assumed that
253
253
    there are no extra columns.
254
254
  */
255
 
  uint max_cols= tabledef ? min(tabledef->size(), cols->n_bits) : 0;
 
255
  uint max_cols= tabledef ? cmin(tabledef->size(), cols->n_bits) : 0;
256
256
  for (; i < max_cols; i++)
257
257
  {
258
258
    if (bitmap_is_set(cols, i))