refactor: 去掉打印

This commit is contained in:
taojinlong 2023-11-28 16:40:48 +08:00
parent ba26066860
commit 26e2500122

View File

@ -1116,13 +1116,8 @@ public class DataSetTableService {
}
private String handlePlainSelect(PlainSelect plainSelect, Select statementSelect, String dsType) throws Exception {
List<SelectItem> selectItems = new ArrayList<>();
plainSelect.getSelectItems().forEach(selectItem -> {
System.out.println(selectItem);
System.out.println(selectItem instanceof PlainSelect);
System.out.println(selectItem instanceof SubSelect);
selectItems.add(selectItem);
});