in shardingsphere-elasticjob-cloud-ui/shardingsphere-elasticjob-cloud-ui-backend/src/main/java/org/apache/shardingsphere/elasticjob/cloud/ui/web/controller/search/JobEventRdbSearch.java [225:233]
private String getTableTimeField(final String tableName) {
String result = "";
if (TABLE_JOB_EXECUTION_LOG.equals(tableName)) {
result = "start_time";
} else if (TABLE_JOB_STATUS_TRACE_LOG.equals(tableName)) {
result = "creation_time";
}
return result;
}