Skip to content

Commit fe955fd

Browse files
committed
clean more and style
1 parent 783de47 commit fe955fd

File tree

2 files changed

+1
-20
lines changed

2 files changed

+1
-20
lines changed

build.sbt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -165,25 +165,6 @@ def crossSparkUniDocSettings(): Seq[Setting[_]] = getSparkVersion() match {
165165
case SPARK_MASTER_VERSION => Seq()
166166
}
167167

168-
/**
169-
* Java-/Scala-/Uni-Doc settings aren't working yet against Spark Master.
170-
1) delta-spark on Spark Master uses JDK 17. delta-iceberg uses JDK 8 or 11. For some reason,
171-
generating delta-spark unidoc compiles delta-iceberg
172-
2) delta-spark unidoc fails to compile. spark 3.5 is on its classpath. likely due to iceberg
173-
issue above.
174-
*/
175-
def crossDeltaSparkProjectSettings(): Seq[Setting[_]] = getSparkVersion() match {
176-
case LATEST_RELEASED_SPARK_VERSION => Seq(
177-
// Java-/Scala-/Uni-Doc Settings
178-
scalacOptions ++= Seq(
179-
"-P:genjavadoc:strictVisibility=true" // hide package private types and methods in javadoc
180-
),
181-
unidocSourceFilePatterns := Seq(SourceFilePattern("io/delta/tables/", "io/delta/exceptions/"))
182-
)
183-
184-
case SPARK_MASTER_VERSION => Seq()
185-
}
186-
187168
/**
188169
* Note: we cannot access sparkVersion.value here, since that can only be used within a task or
189170
* setting macro.

kernel/kernel-api/src/main/java/io/delta/kernel/internal/data/ScanStateRow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static String getTableRoot(Row scanState) {
153153
return scanState.getString(COL_NAME_TO_ORDINAL.get("tablePath"));
154154
}
155155

156-
/**
156+
/**
157157
* Get whether the "variantType" table feature is enabled from scan state {@link Row} returned
158158
* by {@link Scan#getScanState(Engine)}
159159
*

0 commit comments

Comments
 (0)