summaryrefslogtreecommitdiff
path: root/sql/sys_vars.ic
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sys_vars.ic')
-rw-r--r--sql/sys_vars.ic6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sys_vars.ic b/sql/sys_vars.ic
index e04e09e9bc6..750ecc7fce6 100644
--- a/sql/sys_vars.ic
+++ b/sql/sys_vars.ic
@@ -1271,7 +1271,7 @@ public:
default_value,
res->ptr(), res->length(),
&error, &error_len);
- if (error)
+ if (unlikely(error))
{
ErrConvString err(error, error_len, res->charset());
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.str, err.ptr());
@@ -1370,7 +1370,7 @@ public:
That is even while empty (zero-length) values are considered
errors by find_set(), these errors are ignored here
*/
- if (error_len)
+ if (unlikely(error_len))
{
ErrConvString err(error, error_len, res->charset());
my_error(ER_WRONG_VALUE_FOR_VAR, MYF(0), name.str, err.ptr());
@@ -1465,7 +1465,7 @@ public:
plugin= ha_resolve_by_name(thd, &pname, false);
else
plugin= my_plugin_lock_by_name(thd, &pname, plugin_type);
- if (!plugin)
+ if (unlikely(!plugin))
{
// historically different error code
if (plugin_type == MYSQL_STORAGE_ENGINE_PLUGIN)