~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/table_function.cc

  • Committer: Olaf van der Spek
  • Date: 2011-08-10 15:03:56 UTC
  • mto: This revision was merged to the branch mainline in revision 2395.
  • Revision ID: olafvdspek@gmail.com-20110810150356-okmwj7eplotwwkjb
Avoid comparison between signed and unsigned

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
  columns_iterator= columns;
165
165
  bool ret= populate();
166
166
  if (ret)
167
 
    assert(columns_iterator - columns == field_size);
 
167
    assert(columns_iterator == columns + field_size);
168
168
  return ret;
169
169
}
170
170