public static boolean isCaseSensitive()

in flink-vvp-connector-adbpg/src/main/java/org/apache/flink/connector/jdbc/table/utils/AdbpgOptions.java [227:242]


    public static boolean isCaseSensitive(ReadableConfig readableConfig) {
        switch (readableConfig.get(CASE_SENSITIVE).toString().toLowerCase()) {
            case "0":
            case "false":
                return false;
            case "1":
            case "true":
                return true;
            default:
                throw new IllegalArgumentException(
                        String.format(
                                "Invalid value for config %s : %s",
                                CASE_SENSITIVE.key(),
                                readableConfig.get(CASE_SENSITIVE)));
        }
    }