[Feature](JDBC)support clickhouse jdbc external table (#14244)

This commit is contained in:
zy-kkk
2022-11-21 10:33:53 +08:00
committed by GitHub
parent 41dae8b6bb
commit ce489cf723
6 changed files with 69 additions and 7 deletions

View File

@ -174,7 +174,12 @@ public class JdbcExecutor {
}
public long convertDateToLong(Object obj) {
LocalDate date = ((Date) obj).toLocalDate();
LocalDate date;
if (obj instanceof LocalDate) {
date = (LocalDate) obj;
} else {
date = ((Date) obj).toLocalDate();
}
long time = UdfUtils.convertToDateTime(date.getYear(), date.getMonthValue(), date.getDayOfMonth(),
0, 0, 0, true);
return time;