.toLowerCase();
analyzeColumns();
String operation = getParam().getValue(ParamKey.OPERATION, "").trim();
if (!"insert".equalsIgnoreCase(operation)
&& !"replace".equalsIgnoreCase(operation)) {
throw new WormholeException("operation " + operation
+ " not supported when using mysqlloader",
JobStatus.WRITE_FAILED.getStatus());
}
this.replace = "replace".equalsIgnoreCase(operation) ? "replace" : "";