File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/update_and_migration/from_4.3 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ The removable table are prefixed with `ses_` and `sve_`.
335335 FROM ` information_schema`.`tables`
336336 WHERE `table_schema` = '<database_name>' AND (`table_name` LIKE 'ses_%' OR `table_name` LIKE 'sve_%')
337337 ;
338-
338+
339339 PREPARE drop_stmt FROM @drop_query;
340340 EXECUTE drop_stmt;
341341 DEALLOCATE PREPARE drop_stmt;
@@ -348,7 +348,7 @@ The removable table are prefixed with `ses_` and `sve_`.
348348 ` ` `
349349
350350 ` ` ` sql
351- FOR table_row IN
351+ FOR table_row IN
352352 SELECT
353353 table_schema,
354354 table_name
@@ -363,7 +363,7 @@ The removable table are prefixed with `ses_` and `sve_`.
363363 table_name LIKE ('ses_%')
364364 OR
365365 table_name LIKE ('sve_%')
366- )
366+ )
367367 LOOP
368368 EXECUTE 'DROP TABLE ' || table_row.table_schema || '.' || table_row.table_name;
369369 END LOOP;
You can’t perform that action at this time.
0 commit comments