Commit 2a6b91bc authored by serg@sergbook.mysql.com's avatar serg@sergbook.mysql.com
Browse files

wrong test for -q/-qq (T_QUICK/T_FORCE_UNIQUENESS) in myisamchk corrected

parent 274a253a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1238,7 +1238,7 @@ int mi_repair(MI_CHECK *param, register MI_INFO *info,
		      USE_WHOLE_KEY);
      }
      sort_info.dupp++;
      if (!(rep_quick & T_FORCE_UNIQUENESS))
      if ((param->testflag & (T_FORCE_UNIQUENESS|T_QUICK)) == T_QUICK)
      {
        param->testflag|=T_RETRY_WITHOUT_QUICK;
	param->error_printed=1;
@@ -3210,7 +3210,7 @@ static int sort_delete_record(MI_SORT_PARAM *sort_param)
  MI_INFO *info=sort_info->info;
  DBUG_ENTER("sort_delete_record");

  if (!(param->testflag & T_FORCE_UNIQUENESS))
  if ((param->testflag & (T_FORCE_UNIQUENESS|T_QUICK)) == T_QUICK)
  {
    mi_check_print_error(param,
			 "Quick-recover aborted; Run recovery without switch -q or with switch -qq");