presto-connector/src/main/java/com/facebook/presto/maxcompute/utils/MaxComputeUtils.java [69:83]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static boolean supportSchema(MaxComputeConfig config)
    {
        Odps odps = getOdps(config);
        try {
            boolean flag =
                    Boolean.parseBoolean(
                            odps.projects().get().getProperty(SCHEMA_ENABLE_FLAG));
            LOG.info("project {} is support schema: {}", config.getProject(), flag);
            return flag;
        }
        catch (Exception e) {
            LOG.warn("get project {} schema flag error, default not support schema model, error message: {}", config.getProject(), e.getMessage());
            return false;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



trino-connector/src/main/java/io/trino/plugin/maxcompute/utils/MaxComputeUtils.java [71:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static boolean supportSchema(MaxComputeConfig config)
    {
        Odps odps = getOdps(config);
        try {
            boolean flag =
                    Boolean.parseBoolean(
                            odps.projects().get().getProperty(SCHEMA_ENABLE_FLAG));
            LOG.info("project {} is support schema: {}", config.getProject(), flag);
            return flag;
        }
        catch (Exception e) {
            LOG.warn("get project {} schema flag error, default not support schema model, error message: {}", config.getProject(), e.getMessage());
            return false;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



