presto-connector/src/main/java/com/facebook/presto/maxcompute/MaxComputePageSource.java [145:155]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void close()
    {
        LOG.info(String.format("success read %s rows", readRowCount.get()));
        try {
            reader.close();
        }
        catch (IOException e) {
            LOG.error(e, "close reader error");
        }
        allocator.close();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



trino-connector/src/main/java/io/trino/plugin/maxcompute/MaxComputePageSource.java [146:156]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void close()
    {
        LOG.info(String.format("success read %s rows", readRowCount.get()));
        try {
            reader.close();
        }
        catch (IOException e) {
            LOG.error(e, "close reader error");
        }
        allocator.close();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



