~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_cmpfunc.cc

  • Committer: Brian Aker
  • Date: 2008-11-16 02:13:14 UTC
  • mfrom: (584.1.7 devel)
  • Revision ID: brian@tangent.org-20081116021314-31uh0w1l0601cwd5
Merger from Monty

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
{