Incorrect format specifier in ER_SQL_STATEMENT_BUSY error message
When a statement is busy, our error formatting code is incorrectly using the %d format specifier (for signed integers) when statement_id is uint32_t value. This mismatch between the variable type and format specifier can lead to incorrect error messages due to potential overflow, especially when dealing with large unsigned values.