HyukjinKwon commented on a change in pull request #29651:
URL: https://github.com/apache/spark/pull/29651#discussion_r484010520



##########
File path: 
sql/core/src/test/scala/org/apache/spark/sql/streaming/StreamTest.scala
##########
@@ -306,6 +306,14 @@ trait StreamTest extends QueryTest with SharedSparkSession 
with TimeLimits with
     def apply(func: StreamExecution => Any): AssertOnQuery = 
apply("Execute")(func)
   }
 
+  /** Call [[StreamingQuery.processAllAvailable()]] to wait. */

Review comment:
       Ah, seems like here is the problem about Unidoc:
   
   ```
   [error] 
/home/runner/work/spark/spark/sql/core/target/java/org/apache/spark/sql/streaming/StreamTest.java:358:
 error: unexpected text
   [error]   /** Call {@link StreamingQuery.processAllAvailable()} to wait. */
   [error]            ^
   [error] 
/home/runner/work/spark/spark/sql/core/target/java/org/apache/spark/sql/streaming/StreamTest.java:362:
 error: unexpected text
   [error]   /** Call {@link StreamingQuery.processAllAvailable()} to wait. */
   [error]            ^
   ```
   
   When Unidoc produces a Javadoc, it compiles Scala codes and extract Scala 
docs and converts them into Javadoc. The problem is that looks `trait` doesn't 
work well out of the box with it ..
   
   Probably we could just change it to `` 
`StreamingQuery.processAllAvailable()` ``.




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to