Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit b335450

Browse files
committed
Minor formatting
1 parent 98ca1b8 commit b335450

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4216,7 +4216,7 @@ mysql> SHOW FULL TABLES FROM ps;
42164216
##### Description
42174217
42184218
Takes 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
42214221
The 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):
43014301
The 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):
43044304
How 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'))
43074307
Automatically enable Performance Schema instruments and consumers.
43084308
NOTE: The more that are enabled, the more impact on the performance.

procedures/execute_prepared_stmt.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)