~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_cmpfunc.cc

  • Committer: Monty Taylor
  • Date: 2008-11-14 23:27:02 UTC
  • mto: (584.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 588.
  • Revision ID: monty@inaugust.com-20081114232702-xd6jzs32qw21akyc
Split out DTCollation.

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
{