public Page getNextPage()

in paimon-trino-common/src/main/java/org/apache/paimon/trino/TrinoPageSourceBase.java [115:125]


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