Package org.apache.calcite.adapter.redis
Class RedisTable
java.lang.Object
org.apache.calcite.schema.impl.AbstractTable
org.apache.calcite.adapter.redis.RedisTable
- All Implemented Interfaces:
- ScannableTable,- Table,- Wrapper
Table mapped onto a redis table.
- 
Constructor SummaryConstructorsConstructorDescriptionRedisTable(org.apache.calcite.adapter.redis.RedisSchema schema, String tableName, RelProtoDataType protoRowType, Map<String, Object> allFields, String dataFormat, RedisConfig redisConfig) 
- 
Method SummaryModifier and TypeMethodDescriptiongetRowType(RelDataTypeFactory typeFactory) Returns this table's row type.Enumerable<@Nullable Object[]>scan(DataContext root) Returns an enumerator over the rows in this Table.Methods inherited from class org.apache.calcite.schema.impl.AbstractTablegetJdbcTableType, getStatistic, isRolledUp, rolledUpColumnValidInsideAgg, unwrapMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.calcite.schema.TablegetJdbcTableType, getStatistic, isRolledUp, rolledUpColumnValidInsideAggMethods inherited from interface org.apache.calcite.schema.WrappermaybeUnwrap, unwrapOrThrow
- 
Constructor Details- 
RedisTablepublic RedisTable(org.apache.calcite.adapter.redis.RedisSchema schema, String tableName, RelProtoDataType protoRowType, Map<String, Object> allFields, String dataFormat, RedisConfig redisConfig) 
 
- 
- 
Method Details- 
getRowTypeDescription copied from interface:TableReturns 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:
- getRowTypein interface- Table
- Parameters:
- typeFactory- Type factory with which to create the type
- Returns:
- Row type
 
- 
scanDescription copied from interface:ScannableTableReturns an enumerator over the rows in this Table. Each row is represented as an array of its column values.- Specified by:
- scanin interface- ScannableTable
 
 
-