Class InternalDataStreamQueryOperation<E>
- java.lang.Object
-
- org.apache.flink.table.planner.operations.InternalDataStreamQueryOperation<E>
-
- All Implemented Interfaces:
Operation
,QueryOperation
@Internal @Deprecated public class InternalDataStreamQueryOperation<E> extends Object implements QueryOperation
Deprecated.Describes a relational operation that reads from aDataStream
.This is only used for testing.
This operation may expose only part, or change the order of the fields available in a
CompositeType
of the underlyingDataStream
. ThegetFieldIndices()
describes the mapping between fields of theTableSchema
to theCompositeType
.
-
-
Constructor Summary
Constructors Constructor Description InternalDataStreamQueryOperation(ObjectIdentifier identifier, DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema, boolean[] fieldNullables, org.apache.flink.table.planner.plan.stats.FlinkStatistic statistic)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> T
accept(QueryOperationVisitor<T> visitor)
Deprecated.String
asSummaryString()
Deprecated.Returns a string that summarizes this operation for printing to a console.List<QueryOperation>
getChildren()
Deprecated.DataStream<E>
getDataStream()
Deprecated.int[]
getFieldIndices()
Deprecated.boolean[]
getFieldNullables()
Deprecated.ObjectIdentifier
getIdentifier()
Deprecated.ResolvedSchema
getResolvedSchema()
Deprecated.Resolved schema of this operation.org.apache.flink.table.planner.plan.stats.FlinkStatistic
getStatistic()
Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.operations.QueryOperation
asSerializableString
-
-
-
-
Constructor Detail
-
InternalDataStreamQueryOperation
public InternalDataStreamQueryOperation(ObjectIdentifier identifier, DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema, boolean[] fieldNullables, org.apache.flink.table.planner.plan.stats.FlinkStatistic statistic)
Deprecated.
-
-
Method Detail
-
getDataStream
public DataStream<E> getDataStream()
Deprecated.
-
getFieldIndices
public int[] getFieldIndices()
Deprecated.
-
getResolvedSchema
public ResolvedSchema getResolvedSchema()
Deprecated.Description copied from interface:QueryOperation
Resolved schema of this operation.- Specified by:
getResolvedSchema
in interfaceQueryOperation
-
asSummaryString
public String asSummaryString()
Deprecated.Description copied from interface:Operation
Returns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryString
in interfaceOperation
- Returns:
- summary string of this operation for debugging purposes
-
getChildren
public List<QueryOperation> getChildren()
Deprecated.- Specified by:
getChildren
in interfaceQueryOperation
-
accept
public <T> T accept(QueryOperationVisitor<T> visitor)
Deprecated.- Specified by:
accept
in interfaceQueryOperation
-
getIdentifier
public ObjectIdentifier getIdentifier()
Deprecated.
-
getFieldNullables
public boolean[] getFieldNullables()
Deprecated.
-
getStatistic
public org.apache.flink.table.planner.plan.stats.FlinkStatistic getStatistic()
Deprecated.
-
-