~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_cmpfunc.cc

Merged fix-headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
  return found_types;
220
220
}
221
221
 
222
 
static void my_coll_agg_error(DTCollation &c1, DTCollation &c2,
223
 
                              const char *fname)
224
 
{
225
 
  my_error(ER_CANT_AGGREGATE_2COLLATIONS, MYF(0),
226
 
           c1.collation->name,c1.derivation_name(),
227
 
           c2.collation->name,c2.derivation_name(),
228
 
           fname);
229
 
}
230
 
 
231
222
 
232
223
Item_bool_func2* Eq_creator::create(Item *a, Item *b) const
233
224
{