mirror of
https://github.com/MariaDB/server.git
synced 2025-05-11 13:21:44 +03:00
24 lines
813 B
Plaintext
24 lines
813 B
Plaintext
# -----------------------------------------------------------------------
|
|
# Tests for the performance schema statement Digests.
|
|
# -----------------------------------------------------------------------
|
|
|
|
--source include/not_embedded.inc
|
|
--source include/have_perfschema.inc
|
|
|
|
# Initial Setup for Digest
|
|
--source ../include/digest_setup.inc
|
|
|
|
TRUNCATE TABLE performance_schema.events_statements_summary_by_digest;
|
|
|
|
# Executing queries
|
|
--source ../include/digest_execution.inc
|
|
|
|
--echo ####################################
|
|
--echo # QUERYING PS STATEMENT DIGEST
|
|
--echo ####################################
|
|
SELECT DIGEST, DIGEST_TEXT, COUNT_STAR, SUM_ROWS_AFFECTED, SUM_WARNINGS,
|
|
SUM_ERRORS FROM performance_schema.events_statements_summary_by_digest;
|
|
|
|
# Cleanup for Digest
|
|
--source ../include/digest_cleanup.inc
|