public Table table()

in src/main/java/org/apache/paimon/trino/TrinoTableHandle.java [135:145]


    public Table table(TrinoCatalog catalog) {
        if (table != null) {
            return table;
        }
        try {
            table = catalog.getTable(Identifier.create(schemaName, tableName)).copy(dynamicOptions);
        } catch (Catalog.TableNotExistException e) {
            throw new RuntimeException(e);
        }
        return table;
    }