~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_open.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:
652
652
        cannot represent blank like ASCII does. In these cases we have
653
653
        to use _mi_seq_search() for the search.
654
654
      */
655
 
      if (!keyinfo->seg->charset || use_strnxfrm(keyinfo->seg->charset) ||
 
655
      if (not keyinfo->seg->charset || keyinfo->seg->charset->use_strnxfrm() ||
656
656
          (keyinfo->seg->flag & HA_NULL_PART) ||
657
657
          (keyinfo->seg->charset->mbminlen > 1))
658
658
        keyinfo->bin_search=_mi_seq_search;