Skip to content

Commit c78c705

Browse files
committed
1
1 parent 12790a4 commit c78c705

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/graph/Flow.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ trait FlowFunction extends Logging {
9393
* Holds the [[DataFrame]] returned by a [[FlowFunction]] along with the inputs used to
9494
* construct it.
9595
* @param batchInputs the complete inputs read by the flow
96-
* @param sreamingInputs the incremental inputs read by the flow
96+
* @param streamingInputs the incremental inputs read by the flow
9797
* @param usedExternalInputs the identifiers of the external inputs read by the flow
9898
* @param dataFrame the [[DataFrame]] expression executed by the flow if the flow can be resolved
9999
*/

sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/graph/elements.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,8 @@ case class Table(
126126
baseOrigin: QueryOrigin,
127127
isStreamingTableOpt: Option[Boolean],
128128
format: Option[String]
129-
) extends GraphElement
130-
with Output
131-
with TableInput {
129+
) extends TableInput
130+
with Output {
132131

133132
override val origin: QueryOrigin = baseOrigin.copy(
134133
objectType = Some("table"),

0 commit comments

Comments
 (0)