-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAT-14344. added initial setup for percona-mysql-8.4 (#947)
* DAT-14344. added initial setup for percona-mysql-8.4 * DAT-14344. fix for a failing test * DAT-14344. #2 fix for a failing test
- Loading branch information
1 parent
41bda2e
commit dfa679c
Showing
7 changed files
with
82 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
...sources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/createFunction.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:pro="http://www.liquibase.org/xml/ns/pro" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"> | ||
<changeSet author="as" id="1"> | ||
<sql>SET GLOBAL log_bin_trust_function_creators = 1;</sql> | ||
<rollback/> | ||
</changeSet> | ||
<changeSet author="as" id="2"> | ||
<pro:createFunction | ||
encoding="UTF-8" | ||
replaceIfExists="true" | ||
functionName="test_function">CREATE FUNCTION test_function() | ||
RETURNS VARCHAR(20) | ||
BEGIN | ||
RETURN 'Hello'; | ||
END | ||
</pro:createFunction> | ||
<rollback> | ||
<pro:dropFunction functionName="test_function"/> | ||
</rollback> | ||
</changeSet> | ||
</databaseChangeLog> |
28 changes: 28 additions & 0 deletions
28
...resources/liquibase/harness/change/changelogs/percona-xtradb-cluster/8.4/dropFunction.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<databaseChangeLog | ||
xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | ||
xmlns:pro="http://www.liquibase.org/xml/ns/pro" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog | ||
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"> | ||
<changeSet author="as" id="1"> | ||
<sql>SET GLOBAL log_bin_trust_function_creators = 1;</sql> | ||
<rollback/> | ||
</changeSet> | ||
<changeSet author="as" id="2"> | ||
<pro:createFunction | ||
encoding="UTF-8" | ||
replaceIfExists="true" | ||
functionName="test_function">CREATE FUNCTION test_function() | ||
RETURNS VARCHAR(20) | ||
BEGIN | ||
RETURN 'Hello'; | ||
END | ||
</pro:createFunction> | ||
<rollback/> | ||
</changeSet> | ||
<changeSet author="as" id="3"> | ||
<pro:dropFunction functionName="test_function"/> | ||
<rollback/> | ||
</changeSet> | ||
</databaseChangeLog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters