Navigation Menu

Skip to content

Commit

Permalink
suppress string charset auto-conversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikdttr committed Jul 29, 2009
1 parent 27220e8 commit e67484f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_groonga.cc
Expand Up @@ -544,7 +544,7 @@ int ha_groonga::rnd_next(uchar *buf)
case (MYSQL_TYPE_VARCHAR) :
vchar = GRN_TEXT_VALUE(record->value[j]);
(*field)->set_notnull();
(*field)->store(vchar, GRN_BULK_WSIZE(record->value[j]), system_charset_info);
(*field)->store(vchar, GRN_BULK_WSIZE(record->value[j]), (*field)->charset());
break;
}
j++;
Expand Down

0 comments on commit e67484f

Please sign in to comment.