Calcite - Table

Card Puncher Data Processing

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:





Discover More
Card Puncher Data Processing
Calcite - Field

in calcite. You can reference a field (cell) by name or ordinal. Ordinals are zero-based. Each operator guarantees the order in which its output fields occur. For example, Project returns the fields...
Card Puncher Data Processing
Calcite - Schema

A schema is a tree of schema and tables. It's a component of the catalog The root is called the RootSchema For the schema definition in a model, see schemas...



Share this page:
Follow us:
Task Runner