Class DataStreamQueryOperation<E>
- java.lang.Object
-
- org.apache.flink.table.operations.DataStreamQueryOperation<E>
-
- All Implemented Interfaces:
Operation
,QueryOperation
@Internal @Deprecated public class DataStreamQueryOperation<E> extends Object implements 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
CompositeType
of the underlyingDataStream
. ThegetFieldIndices()
describes the mapping between fields of theTableSchema
to theCompositeType
.
-
-
Constructor Summary
Constructors Constructor Description DataStreamQueryOperation(DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema)
Deprecated.DataStreamQueryOperation(ObjectIdentifier identifier, DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema)
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.Optional<ObjectIdentifier>
getIdentifier()
Deprecated.ResolvedSchema
getResolvedSchema()
Deprecated.Resolved schema of this operation.-
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
-
DataStreamQueryOperation
public DataStreamQueryOperation(DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema)
Deprecated.
-
DataStreamQueryOperation
public DataStreamQueryOperation(ObjectIdentifier identifier, DataStream<E> dataStream, int[] fieldIndices, ResolvedSchema resolvedSchema)
Deprecated.
-
-
Method Detail
-
getDataStream
public DataStream<E> getDataStream()
Deprecated.
-
getIdentifier
public Optional<ObjectIdentifier> getIdentifier()
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
-
-