I'm using Mysql as message store DB, just tried to upgrade to spring integration 5.5.5, but found the schema changed,
there requires a CONDITION
column in INT_MESSAGE_GROUP table, although I can create the table by adding backtick around CONDITION
, there is a sql in JdbcMessageStore.java
GET_GROUP_INFO("SELECT COMPLETE, LAST_RELEASED_SEQUENCE, CREATED_DATE, UPDATED_DATE, CONDITION" +
" from %PREFIX%MESSAGE_GROUP where GROUP_KEY=? and REGION=?")
it cannot work? any work-around?