File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
spark-commons/src/main/scala/za/co/absa/spark/commons Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,9 @@ object SparkVersionGuard {
5757case class SparkVersionGuard (minVersionInclusive : SemanticVersion , maxVersionExclusive : Option [SemanticVersion ])
5858 (implicit log: Logger = LoggerFactory .getLogger(SparkVersionGuard .getClass)) {
5959
60+ // TODO Fix ScalaDoc cross-module links #48 - ensureSparkVersionCompatibility(SemanticVersion)
6061 /**
61- * String wrapper for [[ ensureSparkVersionCompatibility(SemanticVersion) ]]
62+ * String wrapper for ensureSparkVersionCompatibility(SemanticVersion)
6263 *
6364 * @param yourVersion provided spark version
6465 */
Original file line number Diff line number Diff line change @@ -35,8 +35,9 @@ object DataFrameImplicits {
3535 dfData
3636 }
3737
38+ // TODO Fix ScalaDoc cross-module links #48 - Dataset.show()
3839 /**
39- * Get the string representation of the data in the format as [[ org.apache.spark.sql. Dataset.show()]] displays them
40+ * Get the string representation of the data in the format as Dataset.show() displays them
4041 *
4142 * @return The string representation of the data in the DataFrame
4243 * @since 0.2.0
@@ -102,9 +103,10 @@ object DataFrameImplicits {
102103 alignSchema(structType.getDataFrameSelector())
103104 }
104105
106+ // TODO Fix ScalaDoc cross-module links #48 - Dataset.cache()
105107 /**
106108 * Persist this Dataset with the default storage level (`MEMORY_AND_DISK`), the same way as
107- * [[ org.apache.spark.sql. Dataset.cache]] does. But does not throw a warning if the DataFrame has been cached before.
109+ * Dataset.cache does. But does not throw a warning if the DataFrame has been cached before.
108110 *
109111 * @return the DataFrame itself
110112 * @since 0.3.0
Original file line number Diff line number Diff line change @@ -31,9 +31,10 @@ import scala.util.Try
3131object StructTypeImplicits {
3232
3333 implicit class DataFrameSelector (schema : StructType ) extends TransformAdapter {
34+ // TODO Fix ScalaDoc cross-module links #48 - DataFrameImplicits.DataFrameEnhancements.alignSchema
3435 /**
3536 * Returns data selector that can be used to align utils of a data frame.
36- * You can use [[ DataFrameImplicits.DataFrameEnhancements.alignSchema ]] .
37+ * You can use DataFrameImplicits.DataFrameEnhancements.alignSchema.
3738 *
3839 * @return Sorted DF to conform to utils
3940 */
Original file line number Diff line number Diff line change 1- ThisBuild / version := " 0.3.0-SNAPSHOT "
1+ ThisBuild / version := " 0.3.0"
You can’t perform that action at this time.
0 commit comments