Navigation Menu

Skip to content

Commit

Permalink
fix indent.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 14, 2012
1 parent 21f108b commit f913943
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions ha_mroonga.cc
Expand Up @@ -6930,13 +6930,14 @@ bool ha_mroonga::is_enable_optimization()
bool ha_mroonga::is_need_normalize(Field *field) const
{
MRN_DBUG_ENTER_METHOD();
DBUG_PRINT("info", ("mroonga: result_type = %u", field->result_type()));
DBUG_PRINT("info", ("mroonga: charset->name = %s",
field->charset()->name));
DBUG_PRINT("info", ("mroonga: charset->csname = %s",
field->charset()->csname));
DBUG_PRINT("info", ("mroonga: charset->state = %u",
field->charset()->state));
DBUG_PRINT("info",
("mroonga: result_type = %u", field->result_type()));
DBUG_PRINT("info",
("mroonga: charset->name = %s", field->charset()->name));
DBUG_PRINT("info",
("mroonga: charset->csname = %s", field->charset()->csname));
DBUG_PRINT("info",
("mroonga: charset->state = %u", field->charset()->state));
if (
field->result_type() == STRING_RESULT &&
!(field->charset()->state & (MY_CS_BINSORT | MY_CS_CSSORT))
Expand Down

0 comments on commit f913943

Please sign in to comment.