You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2022/10/26 15:13:06 UTC

[GitHub] [spark] MaxGekk commented on pull request #38396: [SPARK-40919][SQL][TESTS] Refactor `AnalysisTest#assertAnalysisErrorClass` to avoid wrong check result when `expectedMessageParameters.size <= 4`

MaxGekk commented on PR #38396:
URL: https://github.com/apache/spark/pull/38396#issuecomment-1292202993

   @LuciferYang How about to use `==`?
   ```scala
   scala> :paste
   // Entering paste mode (ctrl-D to finish)
   
   val messageParameters = Map(
         "exprName" -> "`window_duration`",
         "valueRange" -> s"(0, 9223372036854775807]",
         "currentValue" -> "-1000000L",
         "sqlExpr" -> "\"window(2016-01-01 01:01:01, -1000000, 1000000, 0)\""
       )
   val expectedMessageParameters =  Map(
         "sqlExpr" -> "\"window(2016-01-01 01:01:01, -1000000, 1000000, 0)\"",
         "exprName" -> "`window_duration`",
         "valueRange" -> s"(0, 9223372036854775807]",
         "currentValue" -> "-1000000L"
       )
   
   // Exiting paste mode, now interpreting.
   
   messageParameters: scala.collection.immutable.Map[String,String] = Map(exprName -> `window_duration`, valueRange -> (0, 9223372036854775807], currentValue -> -1000000L, sqlExpr -> "window(2016-01-01 01:01:01, -1000000, 1000000, 0)")
   expectedMessageParameters: scala.collection.immutable.Map[String,String] = Map(sqlExpr -> "window(2016-01-01 01:01:01, -1000000, 1000000, 0)", exprName -> `window_duration`, valueRange -> (0, 9223372036854775807], currentValue -> -1000000L)
   
   scala> messageParameters == expectedMessageParameters
   res0: Boolean = true
   ```


-- 
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: reviews-unsubscribe@spark.apache.org

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


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