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

Commit a0962d6

Browse files
Adding README for the ps_is_instrument_default_timed() function.
1 parent 6d249ed commit a0962d6

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1449,6 +1449,31 @@ mysql> SELECT sys.ps_is_instrument_default_enabled('statement/sql/select');
14491449
1 row in set (0.00 sec)
14501450
```
14511451

1452+
#### ps_is_instrument_default_timed
1453+
1454+
##### Description
1455+
1456+
Returns whether an instrument is timed by default in this version of MySQL.
1457+
1458+
##### Parameters
1459+
1460+
* in_instrument VARCHAR(128): The instrument to check.
1461+
1462+
##### Returns
1463+
1464+
ENUM('YES', 'NO')
1465+
1466+
##### Example
1467+
```SQL
1468+
mysql> SELECT sys.ps_is_instrument_default_timed('statement/sql/select');
1469+
+------------------------------------------------------------+
1470+
| sys.ps_is_instrument_default_timed('statement/sql/select') |
1471+
+------------------------------------------------------------+
1472+
| YES |
1473+
+------------------------------------------------------------+
1474+
1 row in set (0.00 sec)
1475+
```
1476+
14521477
#### ps_thread_stack
14531478

14541479
##### Description

0 commit comments

Comments
 (0)