1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-09 11:41:36 +03:00

Missing DBUG_RETURN or DBUG_VOID_RETURN in Diagnostics_area::set_ok_status

This commit is contained in:
Elena Stepanova
2025-10-12 21:08:04 +03:00
parent 07be7a6889
commit de3e6e6519

View File

@@ -349,7 +349,7 @@ Diagnostics_area::set_ok_status(ulonglong affected_rows,
with an OK packet. with an OK packet.
*/ */
if (unlikely(is_error() || is_disabled())) if (unlikely(is_error() || is_disabled()))
return; DBUG_VOID_RETURN;
/* /*
When running a bulk operation, m_status will be DA_OK for the first When running a bulk operation, m_status will be DA_OK for the first
operation and set to DA_OK_BULK for all following operations. operation and set to DA_OK_BULK for all following operations.