rebase fixes

This commit is contained in:
Jonathan Shook 2024-03-13 16:21:51 -05:00
parent c9481cd8b7
commit edbea427de
2 changed files with 0 additions and 23 deletions

View File

@ -54,27 +54,5 @@ public class CqlD4BatchStmtMapper implements OpMapper<Cqld4CqlOp> {
OpDispenser<? extends Cqld4CqlOp> subopDispenser = subopMapper.apply(subop);
return new CqlD4BatchStmtDispenser(adapter, sessionFunc, op,repeat, subop, subopDispenser);
// ParsedTemplateString stmtTpl = op.getAsTemplate(target.field).orElseThrow(() -> new BasicError(
// "No statement was found in the op template:" + op
// ));
//
// RSProcessors processors = new RSProcessors();
// if (stmtTpl.getCaptures().size()>0) {
// processors.add(() -> new CqlFieldCaptureProcessor(stmtTpl.getCaptures()));
// }
//
// Optional<List> processorList = op.getOptionalStaticConfig("processors", List.class);
//
// processorList.ifPresent(l -> {
// l.forEach(m -> {
// Map<String, String> pconfig = ParamsParser.parseToMap(m, "type");
// ResultSetProcessor processor = Cqld4Processors.resolve(pconfig);
// processors.add(() -> processor);
// });
// });
//
// return new Cqld4PreparedStmtDispenser(adapter, sessionFunc, op, stmtTpl, processors);
}
}

View File

@ -22,7 +22,6 @@ import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import java.sql.Array;
import java.util.ArrayList;
import java.util.List;