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 3911ca3 commit acdb386Copy full SHA for acdb386
docs/update_and_migration/from_4.3/update_from_4.3_new_commerce.md
@@ -335,7 +335,10 @@ The removable table are prefixed with `ses_` and `sve_`.
335
FROM `information_schema`.`tables`
336
WHERE `table_schema` = '<database_name>' AND (`table_name` LIKE 'ses_%' OR `table_name` LIKE 'sve_%')
337
;
338
- EXECUTE IMMEDIATE @drop_query;
+
339
+ PREPARE drop_stmt FROM @drop_query;
340
+ EXECUTE drop_stmt;
341
+ DEALLOCATE PREPARE drop_stmt;
342
```
343
344
=== "PostgreSQL"
0 commit comments