Skip to content

Commit 55b1405

Browse files
Nick-0723yaooqinn
authored andcommitted
[KYUUBI #2184] Manage test failures with kyuubi spark nightly build - operation listener *** FAILED ***
### _Why are the changes needed?_ Test failures - operation listener *** FAILED *** #2184 Scheduler pool *** FAILED *** #2185 ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [x] [Run test](https://kyuubi.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #2190 from Nick-0723/fix_initJobId. Closes #2184 a7f5842 [Nick-0723] fix initJobId bug Authored-by: Nick-0723 <chun2184@163.com> Signed-off-by: Kent Yao <yao@apache.org>
1 parent f333e6b commit 55b1405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

externals/kyuubi-spark-sql-engine/src/test/scala/org/apache/kyuubi/engine/spark/WithSparkSQLEngine.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ trait WithSparkSQLEngine extends KyuubiFunSuite {
3636
// engine.initialize.sql='SHOW DATABASES'
3737
protected var initJobId: Int = {
3838
sparkMajorMinorVersion match {
39-
case (3, 2) => 1 // SPARK-35378
39+
case (3, minor) if minor >= 2 => 1 // SPARK-35378
4040
case (3, _) => 0
4141
case _ =>
4242
throw new IllegalArgumentException(s"Not Support spark version $sparkMajorMinorVersion")

0 commit comments

Comments
 (0)