Class DataStreamQueryOperation<E>
- java.lang.Object
-
- org.apache.flink.table.operations.DataStreamQueryOperation<E>
-
- All Implemented Interfaces:
org.apache.flink.table.operations.Operation,org.apache.flink.table.operations.QueryOperation
@Internal @Deprecated public class DataStreamQueryOperation<E> extends Object implements org.apache.flink.table.operations.QueryOperation
Deprecated.Describes a relational operation that reads from aDataStream.This operation may expose only part, or change the order of the fields available in a
CompositeTypeof the underlyingDataStream. ThegetFieldIndices()describes the mapping between fields of theTableSchemato theCompositeType.
-
-
Constructor Summary
Constructors Constructor Description DataStreamQueryOperation(org.apache.flink.streaming.api.datastream.DataStream<E> dataStream, int[] fieldIndices, org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)Deprecated.DataStreamQueryOperation(org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.streaming.api.datastream.DataStream<E> dataStream, int[] fieldIndices, org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description <T> Taccept(org.apache.flink.table.operations.QueryOperationVisitor<T> visitor)Deprecated.StringasSummaryString()Deprecated.List<org.apache.flink.table.operations.QueryOperation>getChildren()Deprecated.org.apache.flink.streaming.api.datastream.DataStream<E>getDataStream()Deprecated.int[]getFieldIndices()Deprecated.Optional<org.apache.flink.table.catalog.ObjectIdentifier>getIdentifier()Deprecated.org.apache.flink.table.catalog.ResolvedSchemagetResolvedSchema()Deprecated.
-
-
-
Constructor Detail
-
DataStreamQueryOperation
public DataStreamQueryOperation(org.apache.flink.streaming.api.datastream.DataStream<E> dataStream, int[] fieldIndices, org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)
Deprecated.
-
DataStreamQueryOperation
public DataStreamQueryOperation(org.apache.flink.table.catalog.ObjectIdentifier identifier, org.apache.flink.streaming.api.datastream.DataStream<E> dataStream, int[] fieldIndices, org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)Deprecated.
-
-
Method Detail
-
getDataStream
public org.apache.flink.streaming.api.datastream.DataStream<E> getDataStream()
Deprecated.
-
getIdentifier
public Optional<org.apache.flink.table.catalog.ObjectIdentifier> getIdentifier()
Deprecated.
-
getFieldIndices
public int[] getFieldIndices()
Deprecated.
-
getResolvedSchema
public org.apache.flink.table.catalog.ResolvedSchema getResolvedSchema()
Deprecated.- Specified by:
getResolvedSchemain interfaceorg.apache.flink.table.operations.QueryOperation
-
asSummaryString
public String asSummaryString()
Deprecated.- Specified by:
asSummaryStringin interfaceorg.apache.flink.table.operations.Operation
-
getChildren
public List<org.apache.flink.table.operations.QueryOperation> getChildren()
Deprecated.- Specified by:
getChildrenin interfaceorg.apache.flink.table.operations.QueryOperation
-
accept
public <T> T accept(org.apache.flink.table.operations.QueryOperationVisitor<T> visitor)
Deprecated.- Specified by:
acceptin interfaceorg.apache.flink.table.operations.QueryOperation
-
-