Info
Error Code:
1134
MariaDB Info 1134: Update Statement Summary
Description
This informational message is returned by MariaDB after a successful `UPDATE` statement. It summarizes the operation's outcome, reporting the number of rows that matched the `WHERE` clause, how many were actually changed, and any warnings generated during execution.
Error Message
Rows matched: %ld Changed: %ld Warnings: %ld
Known Causes
3 known causesSuccessful UPDATE Operation
This information is automatically provided by MariaDB upon the successful execution of an `UPDATE` SQL statement.
Client API Query Info Retrieval
Client connectors and APIs often expose this message when explicitly requesting query information after an `UPDATE` command.
Data Modification Reporting
The message serves to report the exact impact of an `UPDATE` statement, including actual data changes and any non-critical issues.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service