Skip to content

Commit e3ee4ce

Browse files
committed
try more to fix the build
1 parent 1887e30 commit e3ee4ce

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
@@ -33,11 +33,6 @@
3333
<name>Spark Project Declarative Pipelines Library</name>
3434
<url>https://spark.apache.org/</url>
3535
<dependencies>
36-
<dependency>
37-
<groupId>org.apache.spark</groupId>
38-
<artifactId>spark-core_${scala.binary.version}</artifactId>
39-
<version>${project.version}</version>
40-
</dependency>
4136
<dependency>
4237
<groupId>org.apache.spark</groupId>
4338
<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)