This repository was archived by the owner on Aug 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4216,7 +4216,7 @@ mysql> SHOW FULL TABLES FROM ps;
42164216##### Description
42174217
42184218Takes the query in the argument and executes it using a prepared statement. The prepared statement is deallocated,
4219- so the procdure is mainly useful for executing one off dynamically created queries.
4219+ so the procedure is mainly useful for executing one off dynamically created queries.
42204220
42214221The sys_execute_prepared_stmt prepared statement name is used for the query and is required not to exist.
42224222
@@ -4299,10 +4299,10 @@ Some configuration options are supported:
42994299
43004300* in_max_runtime (INT UNSIGNED):
43014301The maximum time to keep collecting data.
4302- Use NULL to get the default which is 60 seconds.
4302+ Use NULL to get the default which is 60 seconds, otherwise enter a value greater than 0 .
43034303* in_interval (INT UNSIGNED):
43044304How long to sleep between data collections.
4305- Use NULL to get the default which is 30 seconds.
4305+ Use NULL to get the default which is 30 seconds, otherwise enter a value greater than 0 .
43064306* in_auto_config (ENUM(' current' , ' medium' , ' full' ))
43074307Automatically enable Performance Schema instruments and consumers.
43084308NOTE: The more that are enabled, the more impact on the performance.
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ CREATE DEFINER='root'@'localhost' PROCEDURE execute_prepared_stmt (
2525 -----------
2626
2727 Takes the query in the argument and executes it using a prepared statement. The prepared statement is deallocated,
28- so the procdure is mainly useful for executing one off dynamically created queries.
28+ so the procedure is mainly useful for executing one off dynamically created queries.
2929
3030 The sys_execute_prepared_stmt prepared statement name is used for the query and is required not to exist.
3131
You can’t perform that action at this time.
0 commit comments