Class ArrayTable

    • Constructor Detail

      • ArrayTable

        ArrayTable​(java.lang.reflect.Type elementType,
                   RelProtoDataType protoRowType,
                   com.google.common.base.Supplier<ArrayTable.Content> supplier)
        Creates an ArrayTable.
    • Method Detail

      • getRowType

        public RelDataType getRowType​(RelDataTypeFactory typeFactory)
        Description copied from interface: Table
        Returns this table's row type.

        This is a struct type whose fields describe the names and types of the columns in this table.

        The implementer must use the type factory provided. This ensures that the type is converted into a canonical form; other equal types in the same query will use the same object.

        Specified by:
        getRowType in interface Table
        Parameters:
        typeFactory - Type factory with which to create the type
        Returns:
        Row type
      • scan

        public Enumerable<java.lang.Object[]> scan​(DataContext root)
        Description copied from interface: ScannableTable
        Returns an enumerator over the rows in this Table. Each row is represented as an array of its column values.
        Specified by:
        scan in interface ScannableTable
      • toPair

        private static <T> Pair<java.lang.Object,​T> toPair​(java.lang.Object dataSet)
      • permuteList

        private static <E> java.util.List<E> permuteList​(java.util.List<E> list,
                                                         int[] sources)