From d19e16d4ded1273daecb1b43f9af1b8f7be272d1 Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 24 Apr 2003 08:22:11 +0500 Subject: [PATCH] SCRUM two versions of KILL small fix sql/sql_select.cc: it's more logical to use killed here --- sql/sql_select.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 61d86c85972..38f1c62ec60 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -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)); }