Table of Contents

About

A table represents a single data set with fields.

Interface

apache/calcite/blob/master/core/src/main/java/org/apache/calcite/schema/Table.java

public interface Table {

    RelDataType getRowType(RelDataTypeFactory typeFactory);
    
    Statistic getStatistic();
    
    Schema.TableType getJdbcTableType();
    
}

where: