We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49d576 commit 8cd7717Copy full SHA for 8cd7717
system/Database/SQLite3/Builder.php
@@ -76,7 +76,7 @@ protected function _truncate(string $table): string
76
*/
77
protected function _updateBatch(string $table, array $values, string $index): string
78
{
79
- if ((float) $this->db->getVersion() >= 3.33) {
+ if (version_compare($this->db->getVersion(), '3.33.0') >= 0) {
80
return parent::_updateBatch($table, $values, $index);
81
}
82
0 commit comments