1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00
two versions of KILL
small fix


sql/sql_select.cc:
  it's more logical to use killed here
This commit is contained in:
unknown
2003-04-24 08:22:11 +05:00
parent f525047d1e
commit d19e16d4de

View File

@ -1725,7 +1725,7 @@ make_join_statistics(JOIN *join,TABLE_LIST *tables,COND *conds,
sizeof(POSITION)*join->const_tables);
join->best_read=1.0;
}
DBUG_RETURN(join->thd->killed_errno() || get_best_combination(join));
DBUG_RETURN(join->thd->killed || get_best_combination(join));
}