Remove trailing spaces (#665)

* Remove trailing spaces

* PR-665 -  Remove trailing spaces

- Updated not stable test t/pt-online-schema-change/preserve_triggers.t
- Updated utilities in bin directory

* PR-665 -  Remove trailing spaces

- Fixed typos

* PR-665 -  Remove trailing spaces

- Fixed typos

---------

Co-authored-by: Sveta Smirnova <sveta.smirnova@percona.com>
This commit is contained in:
Viktor Szépe
2023-09-06 00:15:12 +02:00
committed by GitHub
parent 8bf97c9ca7
commit 2bd40d8c39
570 changed files with 5557 additions and 5557 deletions

View File

@@ -24,7 +24,7 @@ CREATE DEFINER='root'@'localhost' PROCEDURE ps_truncate_all_tables (
Description
-----------
Truncates all summary tables within Performance Schema,
Truncates all summary tables within Performance Schema,
resetting all aggregated instrumentation as a snapshot.
Parameters
@@ -54,10 +54,10 @@ BEGIN
DECLARE v_total_tables INT DEFAULT 0;
DECLARE v_ps_table VARCHAR(64);
DECLARE ps_tables CURSOR FOR
SELECT table_name
FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema = 'performance_schema'
AND (table_name LIKE '%summary%'
SELECT table_name
FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema = 'performance_schema'
AND (table_name LIKE '%summary%'
OR table_name LIKE '%history%');
DECLARE CONTINUE HANDLER FOR NOT FOUND SET v_done = TRUE;