revision-id: 0a47e770743d0be073e262b43fd85a1ea5e3856e (mariadb-10.4.22-53-g0a47e770743) parent(s): 03dff0fcf6ac5e12a76c8c680384ac8abd0c0f1d author: Sergei Petrunia committer: Sergei Petrunia timestamp: 2021-12-23 12:03:09 +0300 message: Fix typos in optimizer trace output --- sql/sql_select.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 35925c0cd44..cfd1fbb3275 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -11404,7 +11404,7 @@ make_join_select(JOIN *join,SQL_SELECT *select,COND *cond) trace_const_cond.add("condition_on_constant_tables", const_cond); if (const_cond->is_expensive()) { - trace_const_cond.add("evalualted", "false") + trace_const_cond.add("evaluated", "false") .add("cause", "expensive cond"); } else @@ -11417,7 +11417,7 @@ make_join_select(JOIN *join,SQL_SELECT *select,COND *cond) if (!const_cond_result) { DBUG_PRINT("info",("Found impossible WHERE condition")); - trace_const_cond.add("evalualted", "true") + trace_const_cond.add("evaluated", "true") .add("found", "impossible where"); join->exec_const_cond= NULL; DBUG_RETURN(1);