We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
7.4
4.2.1
Git
Windows
cli-server (PHP built-in webserver)
No response
If you call several increment/decrement in a row, then the state is not reset.
$db = db_connect()->table('table'); $db->where('id', 1)->increment('value'); // UPDATE `table` SET `value` = `value` + 1 WHERE `id` = 1; $db->where('id', 2)->increment('value'); // UPDATE `table` SET `value` = `value` + 1 WHERE `id` = 1 AND `id` = 2;
The text was updated successfully, but these errors were encountered:
Fixed by #6146
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
PHP Version
7.4
CodeIgniter4 Version
4.2.1
CodeIgniter4 Installation Method
Git
Which operating systems have you tested for this bug?
Windows
Which server did you use?
cli-server (PHP built-in webserver)
Database
No response
What happened?
If you call several increment/decrement in a row, then the state is not reset.
Steps to Reproduce
The text was updated successfully, but these errors were encountered: