I'm using JPAUpdateClause to update all rows satisfying a BooleanExpression where clause.
BooleanExpression where = myEntity.id.isNotNull();
long updatedCount = update.where(where)
.set(myEntity.comments, request.getComment())
.execute();
myEntity.comments is a String.
Is it possible to append request.getComment() when calling set() rather than replacing the existing value?