ulmako commented on issue #774:
URL: https://github.com/apache/submarine/issues/774#issuecomment-941012495


   We ran into the same problems when we tried to build against spark-3.1 (we 
only use submarine-spark-security).
   We managed to find out what the errors are caused by:
   
   1. The trait, `org.apache.spark.sql.catalyst.parser.ParserInterface`, no 
longer has the `parseRawDataType` method
   2. The case class, `org.apache.spark.sql.execution.command.ResetCommand`, 
now expects an argument `config` thus breaking the pattern matching case.
   
   We manage to build the code by:
   
   1. removing the `override` and simply throwing 
`UnsupportedOperationException`
   2. changing the line to `case _: ResetCommand => SubmarineResetCommand`
   
   But those changes were solely aimed at successfully building 
submarine-spark-security and not solving the problems, because we have no 
knowledge of the spark.sql and submarine code.


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


Reply via email to