private void rsetBegin(MappedSchemaObject<?> entity, ResultSet resultSet, String readModify) {
StringBuilder execInfo = new StringBuilder();
for (ExecutionInfo executionInfo : resultSet.getAllExecutionInfo()) {
if (executionInfo == null)
continue;
Host qh = executionInfo.getQueriedHost();
ConsistencyLevel cl = executionInfo.getAchievedConsistencyLevel();
QueryTrace queryTrace = executionInfo.getQueryTrace();
execInfo.append("\n exeuction info: queried-host=[address=").append(qh.getAddress()).
append(", version=").append(qh.getCassandraVersion()).
append(", dc=").append(qh.getDatacenter()).
append(", rac=").append(qh.getRack()).
append("], achieved-consistency-level=").append(cl);
if (queryTrace != null) {
InetAddress coordinator = queryTrace.getCoordinator();
int durationMicros = queryTrace.getDurationMicros();
Map<String, String> parameters = queryTrace.getParameters();