File tree 1 file changed +14
-0
lines changed 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -869,5 +869,19 @@ lazy val defaultCore = (project in file("default-core"))
869
869
"org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test" classifier "tests",
870
870
"org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test" classifier "tests"
871
871
*/
872
+
873
+ // Verbatim from golden tables, trying out different test / classifier tests combinations
874
+ // test and classifier tests -> Cause: java.lang.ClassNotFoundException: delta.DefaultSource
875
+ // just test -> object QueryTest is not a member of package org.apache.spark.sql
876
+ // just classifier tests -> Symbol 'type org.apache.spark.sql.SparkSession' is missing from the classpath.
877
+ // "io.delta" % "delta-core_2.12" % "1.1.0" % "test",
878
+ // "org.apache.spark" % "spark-catalyst_2.12" % "3.2.0" % "test",
879
+ // "org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test",
880
+ // "org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test",
881
+ //
882
+ // "io.delta" % "delta-core_2.12" % "1.1.0" % "test" classifier "tests",
883
+ // "org.apache.spark" % "spark-catalyst_2.12" % "3.2.0" % "test" classifier "tests",
884
+ // "org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test" classifier "tests",
885
+ // "org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test" classifier "tests"
872
886
)
873
887
)
You can’t perform that action at this time.
0 commit comments