flink-vvp-connector-adbpg/src/main/java/org/apache/flink/connector/jdbc/table/utils/DateUtil.java [18:32]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class DateUtil {
    private static ConcurrentHashMap<String, FastDateFormat> sdfCache = new ConcurrentHashMap<String, FastDateFormat>() {
        {
            this.put("yyyy-MM-dd HH:mm:ss", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss"));
            this.put("yyyy-MM-dd HH:mm:ss.SSS", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss.SSS"));
            this.put("yyyy-MM-dd", FastDateFormat.getInstance("yyyy-MM-dd"));
            this.put("HH:mm:ss", FastDateFormat.getInstance("HH:mm:ss"));
        }
    };

    public DateUtil() {
    }

    private static FastDateFormat getDateFormat(String timeZone, String format) {
        String key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



flink_sink_adbpg_datastream/src/main/java/DateUtil.java [13:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class DateUtil {
    private static ConcurrentHashMap<String, FastDateFormat> sdfCache = new ConcurrentHashMap<String, FastDateFormat>() {
        {
            this.put("yyyy-MM-dd HH:mm:ss", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss"));
            this.put("yyyy-MM-dd HH:mm:ss.SSS", FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss.SSS"));
            this.put("yyyy-MM-dd", FastDateFormat.getInstance("yyyy-MM-dd"));
            this.put("HH:mm:ss", FastDateFormat.getInstance("HH:mm:ss"));
        }
    };

    public DateUtil() {
    }

    private static FastDateFormat getDateFormat(String timeZone, String format) {
        String key;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



