测试线程池
parent
3eaa65b3b0
commit
f77645a954
|
@ -125,13 +125,14 @@ public class TaskServiceImpl extends ServiceImpl<TaskMapper, TaskInfo> implement
|
||||||
String[] tableAsFieldList = taskInputList.get(i).getTableAsField().split(",");
|
String[] tableAsFieldList = taskInputList.get(i).getTableAsField().split(",");
|
||||||
for (int j = 0; j < tableAsFieldList.length; j++) {
|
for (int j = 0; j < tableAsFieldList.length; j++) {
|
||||||
for (int o = 0; o < newFileName.length; o++) {
|
for (int o = 0; o < newFileName.length; o++) {
|
||||||
newAndOldMap.put(outPutFileName[j], newFileName[j]);
|
newAndOldMap.put(outPutFileName[o], newFileName[o]);
|
||||||
if(tableAsFieldList[j].equals(outPutFileName[o])){
|
if(tableAsFieldList[j].equals(outPutFileName[o])){
|
||||||
sql += ","+taskInputList.get(i).getTableAsName() + "." + tableFieldList[j] +" " +
|
sql += ","+taskInputList.get(i).getTableAsName() + "." + tableFieldList[j] +" " +
|
||||||
tableAsFieldList[j] + " ";
|
tableAsFieldList[j] + " ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fieldAsNameMap.put(tableAsFieldList[j], tableFieldList[j]);
|
fieldAsNameMap.put(tableAsFieldList[j], tableFieldList[j]);
|
||||||
|
fieldAsNameMap.put(tableAsFieldList[j], tableFieldList[j]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue