in paimon-prestosql-common/src/main/java/org/apache/paimon/prestosql/PrestoSqlTableHandle.java [129:140]
public Table table() {
if (lazyTable == null) {
try {
lazyTable =
InstantiationUtil.deserializeObject(
serializedTable, this.getClass().getClassLoader());
} catch (IOException | ClassNotFoundException e) {
throw new RuntimeException(e);
}
}
return lazyTable;
}