summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/dml_events_stages_current.result
diff options
context:
space:
mode:
authorVicențiu Ciorbaru <cvicentiu@gmail.com>2021-09-10 17:16:18 +0300
committerVicențiu Ciorbaru <cvicentiu@gmail.com>2021-09-10 17:16:18 +0300
commit7c33ecb6651fb80f46bf9f3d8fee2e2f2b70995d (patch)
tree7e44ff7393b97f739737c7d1427f042d72fdf46e /mysql-test/suite/perfschema/r/dml_events_stages_current.result
parent6e3bd663d0fc669ffa6ab4c5f5aa57a1244ac555 (diff)
parent4f85eadf71775979f97744abc536df6b67cf3e5d (diff)
downloadmariadb-git-7c33ecb6651fb80f46bf9f3d8fee2e2f2b70995d.tar.gz
Merge remote-tracking branch 'upstream/10.4' into 10.5
Diffstat (limited to 'mysql-test/suite/perfschema/r/dml_events_stages_current.result')
-rw-r--r--mysql-test/suite/perfschema/r/dml_events_stages_current.result19
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/dml_events_stages_current.result b/mysql-test/suite/perfschema/r/dml_events_stages_current.result
index 7d0c3bed19c..5b8d0c61de4 100644
--- a/mysql-test/suite/perfschema/r/dml_events_stages_current.result
+++ b/mysql-test/suite/perfschema/r/dml_events_stages_current.result
@@ -23,3 +23,22 @@ UNLOCK TABLES;
LOCK TABLES performance_schema.events_stages_current WRITE;
ERROR 42000: SELECT, LOCK TABLES command denied to user 'root'@'localhost' for table 'events_stages_current'
UNLOCK TABLES;
+#
+# MDEV-25325 column_comment for performance_schema tables
+#
+select column_name, column_comment
+from information_schema.columns
+where table_schema='performance_schema' and table_name='events_stages_current';
+column_name column_comment
+THREAD_ID Thread associated with the event. Together with EVENT_ID uniquely identifies the row.
+EVENT_ID Thread's current event number at the start of the event. Together with THREAD_ID uniquely identifies the row.
+END_EVENT_ID NULL when the event starts, set to the thread's current event number at the end of the event.
+EVENT_NAME Event instrument name and a NAME from the setup_instruments table
+SOURCE Name and line number of the source file containing the instrumented code that produced the event.
+TIMER_START Value in picoseconds when the event timing started or NULL if timing is not collected.
+TIMER_END Value in picoseconds when the event timing ended, or NULL if the event has not ended or timing is not collected.
+TIMER_WAIT Value in picoseconds of the event's duration or NULL if the event has not ended or timing is not collected.
+WORK_COMPLETED
+WORK_ESTIMATED
+NESTING_EVENT_ID EVENT_ID of event within which this event nests.
+NESTING_EVENT_TYPE Nesting event type. Either statement, stage or wait.