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 33fd1c7 commit 28fb55dCopy full SHA for 28fb55d
readme.txt
@@ -42,6 +42,8 @@ Yes, you can!
42
= 2.0.0 =
43
* Dropped support for PHP 7.0. The minimum required PHP version is now 7.2.
44
* Fixed kagg_generator_comment_max_nesting_level filter name.
45
+* Fixed inability to create a temporary table when it exists after previous operations.
46
+* Fixed deprecation errors with PHP 8.4.
47
* Tested with WordPress 6.7.
48
* Tested with PHP 8.4.
49
src/php/Settings.php
@@ -674,6 +674,7 @@ private function delete_items( Item $item_handler ): bool {
674
675
$queries = [
676
'START TRANSACTION',
677
+ "DROP TABLE {$table}_copy",
678
"CREATE TABLE {$table}_copy LIKE $table",
679
$wpdb->prepare(
680
"INSERT INTO {$table}_copy
0 commit comments