presto-connector/src/main/java/com/facebook/presto/maxcompute/MaxComputeMetadata.java [89:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<String> listSchemaNames()
    {
        if (!supportSchema) {
            return ImmutableList.of(DEFAULT_SCHEMA);
        }
        // TODO: use cache
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        for (Schema schema : odps.schemas()) {
            builder.add(schema.getName());
        }
        return builder.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



trino-connector/src/main/java/io/trino/plugin/maxcompute/MaxComputeMetadata.java [87:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public List<String> listSchemaNames()
    {
        if (!supportSchema) {
            return ImmutableList.of(DEFAULT_SCHEMA);
        }
        // TODO: use cache
        ImmutableList.Builder<String> builder = ImmutableList.builder();
        for (Schema schema : odps.schemas()) {
            builder.add(schema.getName());
        }
        return builder.build();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



