ismailsimsek commented on issue #6205:
URL: https://github.com/apache/iceberg/issues/6205#issuecomment-1975257517

   Thank you. ran into same error and it solved my error.
   
   `Caused by: java.lang.ClassCastException: class 
org.apache.parquet.schema.MessageType cannot be cast to class 
org.apache.iceberg.shaded.org.apache.parquet.schema.MessageType`
   
   replaced spark runtime with following 
   
   ```
   
           <dependency>
               <groupId>org.apache.iceberg</groupId>
               
<artifactId>iceberg-spark-${version.spark.major}_${version.spark.scala}</artifactId>
               <version>${version.iceberg}</version>
               <scope>test</scope>
           </dependency>
           <dependency>
               <groupId>org.apache.iceberg</groupId>
               
<artifactId>iceberg-spark-extensions-${version.spark.major}_${version.spark.scala}</artifactId>
               <version>${version.iceberg}</version>
               <scope>test</scope>
           </dependency>
   ```
   
   


-- 
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: issues-unsubscr...@iceberg.apache.org

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


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

Reply via email to