~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/boolean.cc

  • Committer: Monty Taylor
  • Date: 2011-02-21 20:14:39 UTC
  • mto: This revision was merged to the branch mainline in revision 2190.
  • Revision ID: mordred@inaugust.com-20110221201439-2xre2w63m4cj8wxu
Actually differentiate with the flag and fix up client output properly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
        field_name_arg),
61
61
  ansi_display(ansi_display_arg)
62
62
  {
63
 
    flags|= UNSIGNED_FLAG;
 
63
    if (ansi_display)
 
64
      flags|= UNSIGNED_FLAG;
64
65
  }
65
66
 
66
67
int Boolean::cmp(const unsigned char *a, const unsigned char *b)