Skip to content

Commit 1e84b20

Browse files
marmbrusconviva-zz
authored andcommitted
[SQL] Fix compiling of catalyst docs.
Author: Michael Armbrust <michael@databricks.com> Closes apache#1653 from marmbrus/fixDocs and squashes the following commits: 0aa1feb [Michael Armbrust] Fix compiling of catalyst docs.
1 parent f04edf3 commit 1e84b20

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

project/SparkBuild.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,10 @@ object Flume {
194194

195195
object Catalyst {
196196
lazy val settings = Seq(
197-
addCompilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full))
197+
addCompilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.full),
198+
// Quasiquotes break compiling scala doc...
199+
// TODO: Investigate fixing this.
200+
sources in (Compile, doc) ~= (_ filter (_.getName contains "codegen")))
198201
}
199202

200203
object SQL {

0 commit comments

Comments
 (0)