|
@@ -56,22 +56,24 @@ public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
|
|
|
tableSpace.get(SpaceEnum.TABLESPACENAME.getName()).toString(),
|
|
|
date,
|
|
|
YearMonth.of(date.getYear() + 1900, date.getMonth() + 1).lengthOfMonth());
|
|
|
- statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
|
|
|
- partitionSql.forEach(
|
|
|
- i -> {
|
|
|
- try {
|
|
|
- statement.addBatch(i);
|
|
|
- } catch (SQLException throwables) {
|
|
|
- throwables.printStackTrace();
|
|
|
- }
|
|
|
- });
|
|
|
- statement.executeBatch();
|
|
|
- statement.clearBatch();
|
|
|
+ System.out.println(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
|
|
|
+ //statement.execute(tableSpace.get(SpaceEnum.TABLESPACE_SQL.getName()).toString());
|
|
|
+// partitionSql.forEach(
|
|
|
+// i -> {
|
|
|
+// try {
|
|
|
+// statement.addBatch(i);
|
|
|
+// } catch (SQLException throwables) {
|
|
|
+// throwables.printStackTrace();
|
|
|
+// }
|
|
|
+// });
|
|
|
+// statement.executeBatch();
|
|
|
+// statement.clearBatch();
|
|
|
+ partitionSql.forEach(System.out::println);
|
|
|
}
|
|
|
Date lastDate = (Date) tableSpaces.get(tableSpaces.size() - 1).get(SpaceEnum.DATE.getName());
|
|
|
rule.setLastAddTablespaceTime(DateUtils.monthAddNum(lastDate, 1));
|
|
|
rule.setLastAddPartitionTime(DateUtils.dayAddNum(DateUtils.monthAddNum(lastDate, 1), -1));
|
|
|
- ruleService.updateById(rule);
|
|
|
+ //ruleService.updateById(rule);
|
|
|
}
|
|
|
|
|
|
@Autowired
|
|
@@ -139,6 +141,7 @@ public class SpaceAndPartitionServiceImpl implements SpaceAndPartitionService {
|
|
|
}
|
|
|
statement.executeBatch();
|
|
|
statement.clearBatch();
|
|
|
+ //h
|
|
|
return "success";
|
|
|
} catch (Exception e) {
|
|
|
return "error" + e.getMessage();
|