Loading sql/sql_parse.cc +2 −2 Original line number Diff line number Diff line Loading @@ -355,7 +355,7 @@ int check_user(THD *thd, enum enum_server_command command, if (check_count) { VOID(pthread_mutex_lock(&LOCK_thread_count)); bool count_ok= thread_count < max_connections + delayed_insert_threads bool count_ok= thread_count <= max_connections + delayed_insert_threads || (thd->master_access & SUPER_ACL); VOID(pthread_mutex_unlock(&LOCK_thread_count)); if (!count_ok) Loading sql/ha_ndbcluster.cc +1 −1 File changed.Contains only whitespace changes. Show changes Loading
sql/sql_parse.cc +2 −2 Original line number Diff line number Diff line Loading @@ -355,7 +355,7 @@ int check_user(THD *thd, enum enum_server_command command, if (check_count) { VOID(pthread_mutex_lock(&LOCK_thread_count)); bool count_ok= thread_count < max_connections + delayed_insert_threads bool count_ok= thread_count <= max_connections + delayed_insert_threads || (thd->master_access & SUPER_ACL); VOID(pthread_mutex_unlock(&LOCK_thread_count)); if (!count_ok) Loading