Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed issue DatabaseException: Illegal mix of collations for operatio… #2358

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ databaseChangeLog:
replaceIfExists: true
context: MYSQL,H2
selectQuery: |2-
select cast(process.id as char(10))
select convert(cast(process.id as char(10)) using utf8)
as value, 'process' as type, process.id as processid, null as logid, null as folderid
from process union
select process.name
Expand All @@ -832,7 +832,7 @@ databaseChangeLog:
select process_branch.branch_name
as value, 'process' as type, process_branch.processid as processid, null as logid, null as folderid
from process_branch union
select cast(`log`.id as char(10))
select convert(cast(`log`.id as char(10)) using utf8)
as value, 'log' as type, null as processid, `log`.id as logid, null as folderid
from `log` union
select `log`.name
Expand Down Expand Up @@ -1913,4 +1913,4 @@ databaseChangeLog:
dbms: 'h2'
splitStatements: true
sql: CREATE TABLE IF NOT EXISTS storage (id bigint NOT NULL AUTO_INCREMENT, storage_path varchar(200) NOT NULL, prefix varchar(100) NOT NULL, "key" varchar(200) DEFAULT NULL, created varchar(100) NOT NULL,updated varchar(100) NOT NULL,PRIMARY KEY (id));
stripComments: false
stripComments: false