in src/main/java/org/apache/paimon/trino/DirectTrinoPageSource.java [90:101]
public void close() {
try {
if (current != null) {
current.close();
}
for (ConnectorPageSource source : pageSourceQueue) {
source.close();
}
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}