// update
context.setSql(update);
druidParser.generatePlan(context);
Plan plan = context.getPlan();
if (plan instanceof UpdatePlan) {
UpdatePlan updatePlan = (UpdatePlan) plan;
List<UpdateAction> units = updatePlan.getActions();
Assert.assertEquals(units.size(), 1);
// EntityGroup execute update
eg.update(units.get(0));
Redo redo = eg.getLog();
if (redo instanceof MemRedoLog) {