~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_open.cc

  • Committer: Mark Atwood
  • Date: 2011-12-11 22:56:39 UTC
  • mfrom: (2465.1.1 drizzle)
  • Revision ID: me@mark.atwood.name-20111211225639-3d8ype7g2y82dci5
mergeĀ lp:~brianaker/drizzle/libdrizzle-breakout

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;