summaryrefslogtreecommitdiffstats
path: root/mysql-test/include/check_digest.inc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 18:15:00 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-01 18:15:00 +0000
commita2a2e32c02643a0cec111511220227703fda1cd5 (patch)
tree69cc2b631234c2a8e026b9cd4d72676c61c594df /mysql-test/include/check_digest.inc
parentReleasing progress-linux version 1:10.11.8-1~progress7.99u1. (diff)
downloadmariadb-a2a2e32c02643a0cec111511220227703fda1cd5.tar.xz
mariadb-a2a2e32c02643a0cec111511220227703fda1cd5.zip
Merging upstream version 1:11.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/include/check_digest.inc')
-rw-r--r--mysql-test/include/check_digest.inc34
1 files changed, 34 insertions, 0 deletions
diff --git a/mysql-test/include/check_digest.inc b/mysql-test/include/check_digest.inc
new file mode 100644
index 00000000..9e5d6ccc
--- /dev/null
+++ b/mysql-test/include/check_digest.inc
@@ -0,0 +1,34 @@
+#
+# check_digest() checks digests validity from performance_schema.events_statements_summary_by_digest
+#
+
+--disable_query_log
+create table test._digests(d varchar(32) primary key);
+
+delimiter ~~;
+create function test.check_digest(digest varchar(255))
+returns tinyint
+not deterministic
+begin
+ declare digest_exists tinyint;
+ if length(digest) != 32 or conv(digest, 16, 10) = 0 then
+ return 0;
+ end if;
+ select exists (select d from test._digests where d = digest) into digest_exists;
+ if digest_exists then
+ return 0;
+ end if;
+ #insert into test._digests values (digest);
+ return 1;
+end~~
+
+create procedure test.reset_digests()
+begin
+ delete from test._digests;
+end~~
+delimiter ;~~
+
+--disable_result_log
+call sys.ps_truncate_all_tables(false);
+--enable_result_log
+--enable_query_log