dongjoon-hyun commented on code in PR #52891:
URL: https://github.com/apache/spark/pull/52891#discussion_r2501535445


##########
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/UnsupportedOperationsSuite.scala:
##########
@@ -1017,6 +1035,30 @@ class UnsupportedOperationsSuite extends SparkFunSuite 
with SQLHelper {
     }
   }
 
+  /** Assert that the logical plan is supported for real-time mode */
+  def assertSupportedForRealTime(name: String, plan: LogicalPlan, outputMode: 
OutputMode): Unit = {
+    test(s"real-time trigger - $name: supported") {
+      UnsupportedOperationChecker.checkAdditionalRealTimeModeConstraints(plan, 
outputMode)
+    }
+  }
+
+  /** Assert that the logical plan is not supported inside a streaming plan 
with the

Review Comment:
   nit. Maybe, the following?
   
   ```
   /**
    * Assert that the logical plan is not supported inside a streaming plan 
with the
   ...
   ```



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to