presto-connector/src/main/java/com/facebook/presto/maxcompute/MaxComputeMetadata.java [69:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean schemaExists(ConnectorSession session, String schemaName)
    {
        if (!supportSchema || schemaName.equals(DEFAULT_SCHEMA)) {
            // non schema model ignore schema
            return true;
        }
        try {
            return odps.schemas().exists(schemaName);
        }
        catch (OdpsException e) {
            throw MaxComputeUtils.wrapOdpsException(e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



trino-connector/src/main/java/io/trino/plugin/maxcompute/MaxComputeMetadata.java [67:79]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean schemaExists(ConnectorSession session, String schemaName)
    {
        if (!supportSchema || schemaName.equals(DEFAULT_SCHEMA)) {
            // non schema model ignore schema
            return true;
        }
        try {
            return odps.schemas().exists(schemaName);
        }
        catch (OdpsException e) {
            throw MaxComputeUtils.wrapOdpsException(e);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



