public Page getNextPage()

in paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoPageSourceBase.java [117:127]


    public Page getNextPage() {
        return ClassLoaderUtils.runWithContextClassLoader(
                () -> {
                    try {
                        return nextPage();
                    } catch (IOException e) {
                        throw new UncheckedIOException(e);
                    }
                },
                PrestoPageSourceBase.class.getClassLoader());
    }