~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
1054
1054
  map= ~(uint64_t) 0;
1055
1055
  if (!table->keys_in_use_for_query.is_clear_all())
1056
1056
    /* use all keys if there's no list specified by the user through hints */
1057
 
    map= table->keys_in_use_for_query.to_ulonglong();
 
1057
    map= table->keys_in_use_for_query.to_uint64_t();
1058
1058
 
1059
1059
  if ((error= mi_assign_to_key_cache(file, map, new_key_cache)))
1060
1060
  {