~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.cc

  • Committer: Mark Atwood
  • Date: 2011-10-25 19:08:35 UTC
  • mfrom: (2445.1.6 rf)
  • Revision ID: me@mark.atwood.name-20111025190835-g21cn911ypxjd5fi
mergeĀ lp:~olafvdspek/drizzle/refactor7

Show diffs side-by-side

added added

removed removed

Lines of Context:
1341
1341
UNIV_INTERN
1342
1342
bool
1343
1343
innobase_isspace(
1344
 
  const void *cs,
 
1344
  const void* cs,
1345
1345
  char char_to_test)
1346
1346
{
1347
 
  return my_isspace(static_cast<const charset_info_st *>(cs), char_to_test);
 
1347
  return static_cast<const charset_info_st*>(cs)->isspace(char_to_test);
1348
1348
}
1349
1349
 
1350
1350
#if defined (__WIN__) && defined (MYSQL_DYNAMIC_PLUGIN)