~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-07-22 18:31:32 UTC
  • Revision ID: brian@tangent.org-20080722183132-ne2ntl7g7mdf2eez
uint32 -> uin32_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
899
899
        CHARSET_INFO*   from_cs,
900
900
        uint*           errors)
901
901
{
902
 
  return(copy_and_convert((char*)to, (uint32) to_length, to_cs,
903
 
                          (const char*)from, (uint32) from_length, from_cs,
 
902
  return(copy_and_convert((char*)to, (uint32_t) to_length, to_cs,
 
903
                          (const char*)from, (uint32_t) from_length, from_cs,
904
904
                          errors));
905
905
}
906
906
 
1237
1237
#ifdef HAVE_QUERY_CACHE
1238
1238
        mysql_query_cache_invalidate4((THD*) trx->mysql_thd,
1239
1239
                                      (const char*) full_name,
1240
 
                                      (uint32) full_name_len,
 
1240
                                      (uint32_t) full_name_len,
1241
1241
                                      TRUE);
1242
1242
#endif
1243
1243
}