From c11e26946f1742f8fdb71aab7c6887983dfdaf3a Mon Sep 17 00:00:00 2001 From: Igor Babaev Date: Thu, 12 Sep 2019 21:30:02 -0700 Subject: [PATCH] Fixed a typo in the patch for mdev-15777 --- sql/item_cmpfunc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/item_cmpfunc.cc b/sql/item_cmpfunc.cc index 71bf5f431a6..907480ab6dc 100644 --- a/sql/item_cmpfunc.cc +++ b/sql/item_cmpfunc.cc @@ -2096,7 +2096,7 @@ bool Item_func_between::find_not_null_fields(table_map allowed) return false; return args[0]->find_not_null_fields(allowed) || args[1]->find_not_null_fields(allowed) || - args[3]->find_not_null_fields(allowed); + args[2]->find_not_null_fields(allowed); }