Skip to content

Commit

Permalink
Merge pull request #712 from liquibase/fix_aws_mariadb_tests
Browse files Browse the repository at this point in the history
fix aws mariadb tests
  • Loading branch information
PavloTytarchuk authored Jan 5, 2024
2 parents ec0f970 + ba55719 commit f78f20a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"com.datical.liquibase.ext.storedlogic.function.Function": [
{
"function": {
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4\nBEGIN\n RETURN 'Hello';\n END",
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4 COLLATE utf8mb4_general_ci\nBEGIN\n RETURN 'Hello';\n END",
"name": "test_function"
}
}]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"com.datical.liquibase.ext.storedlogic.function.Function": [
{
"function": {
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4\nBEGIN\n RETURN 'Hello';\n END",
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4 COLLATE utf8mb4_general_ci\nBEGIN\n RETURN 'Hello';\n END",
"name": "test_function"
}
}]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"com.datical.liquibase.ext.storedlogic.function.Function": [
{
"function": {
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4\nBEGIN\n RETURN 'Hello';\n END",
"body": "CREATE FUNCTION `test_function`() RETURNS varchar(20) CHARSET utf8mb4 COLLATE utf8mb4_general_ci\nBEGIN\n RETURN 'Hello';\n END",
"name": "test_function"
}
}]
Expand Down

0 comments on commit f78f20a

Please sign in to comment.