Skip to content

Commit f4e3ecd

Browse files
committed
try more to fix the build
1 parent 54690c7 commit f4e3ecd

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

sql/pipelines/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,6 @@
4343
<version>${project.version}</version>
4444
<scope>test</scope>
4545
</dependency>
46-
<dependency>
47-
<groupId>org.apache.spark</groupId>
48-
<artifactId>spark-core_${scala.binary.version}</artifactId>
49-
<version>${project.version}</version>
50-
</dependency>
5146
<dependency>
5247
<groupId>org.apache.spark</groupId>
5348
<artifactId>spark-sql_${scala.binary.version}</artifactId>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import org.apache.spark.sql.classic.SparkSession
2525
import org.apache.spark.sql.pipelines.AnalysisWarning
2626

2727
/**
28-
* A context used when evaluating a [[Flow]]'s query into a concrete [[DataFrame]].
28+
* A context used when evaluating a [[Flow]]'s query into a concrete DataFrame.
2929
*
3030
* @param allInputs Set of identifiers for all [[Input]]s defined in the DataflowGraph.
3131
* @param availableInputs Inputs available to be referenced with `read` or `readStream`.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ case class QueryOrigin(
8080
)
8181
}
8282

83-
/** Generates a [[SourceCodeLocation]] using the details present in the query origin. */
83+
/** Generates a SourceCodeLocation using the details present in the query origin. */
8484
def toSourceCodeLocation: SourceCodeLocation = SourceCodeLocation(
8585
path = fileName,
8686
// QueryOrigin tracks line numbers using a 1-indexed numbering scheme whereas SourceCodeLocation

0 commit comments

Comments
 (0)