From 43d5891fe8835ead4bb8b20ecb4cda558f0a3a29 Mon Sep 17 00:00:00 2001 From: Pavlo Tytarchuk Date: Fri, 20 Dec 2024 13:41:25 +0100 Subject: [PATCH] DAT-14344. #2 fix for a failing test --- .../8.4/dropFunction.xml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/main/resources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/dropFunction.xml diff --git a/src/main/resources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/dropFunction.xml b/src/main/resources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/dropFunction.xml new file mode 100644 index 000000000..a89e30de5 --- /dev/null +++ b/src/main/resources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/dropFunction.xml @@ -0,0 +1,28 @@ + + + + SET GLOBAL log_bin_trust_function_creators = 1; + + + + CREATE FUNCTION test_function() + RETURNS VARCHAR(20) + BEGIN + RETURN 'Hello'; + END + + + + + + + + \ No newline at end of file