File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
sql/pipelines/src/main/scala/org/apache/spark/sql/pipelines/graph Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ trait FlowFunction extends Logging {
93
93
* Holds the [[DataFrame ]] returned by a [[FlowFunction ]] along with the inputs used to
94
94
* construct it.
95
95
* @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
97
97
* @param usedExternalInputs the identifiers of the external inputs read by the flow
98
98
* @param dataFrame the [[DataFrame ]] expression executed by the flow if the flow can be resolved
99
99
*/
Original file line number Diff line number Diff line change @@ -126,9 +126,8 @@ case class Table(
126
126
baseOrigin : QueryOrigin ,
127
127
isStreamingTableOpt : Option [Boolean ],
128
128
format : Option [String ]
129
- ) extends GraphElement
130
- with Output
131
- with TableInput {
129
+ ) extends TableInput
130
+ with Output {
132
131
133
132
override val origin : QueryOrigin = baseOrigin.copy(
134
133
objectType = Some (" table" ),
You can’t perform that action at this time.
0 commit comments