BATCH-762: changed ExecutionContext storage strategy to use JSON for serialization in a single String/CLOB
This commit is contained in:
@@ -62,7 +62,7 @@ public class MySqlPagingQueryProvider extends AbstractSqlPagingQueryProvider {
|
||||
sql.append(" FROM ").append(getFromClause());
|
||||
sql.append(getWhereClause() == null ? "" : " WHERE " + getWhereClause());
|
||||
sql.append(" ORDER BY ").append(getSortKey()).append(" ASC");
|
||||
sql.append(" LIMIT ").append(offset).append(" 1");
|
||||
sql.append(" LIMIT ").append(offset).append(", 1");
|
||||
|
||||
return sql.toString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user