You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by ja...@apache.org on 2022/08/16 02:13:39 UTC

[iceberg] branch master updated: Build: Resolve unchecked Map type cast in TestAvroNameMapping (#5541)

This is an automated email from the ASF dual-hosted git repository.

jackye pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 5f5c9235c1 Build: Resolve unchecked Map type cast in TestAvroNameMapping (#5541)
5f5c9235c1 is described below

commit 5f5c9235c10ed4a711a64de880491b3ae4f348ec
Author: Rushan Jiang <55...@users.noreply.github.com>
AuthorDate: Mon Aug 15 22:13:35 2022 -0400

    Build: Resolve unchecked Map type cast in TestAvroNameMapping (#5541)
---
 core/src/test/java/org/apache/iceberg/avro/TestAvroNameMapping.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/src/test/java/org/apache/iceberg/avro/TestAvroNameMapping.java b/core/src/test/java/org/apache/iceberg/avro/TestAvroNameMapping.java
index 26f8625ea1..c6bdb88b7d 100644
--- a/core/src/test/java/org/apache/iceberg/avro/TestAvroNameMapping.java
+++ b/core/src/test/java/org/apache/iceberg/avro/TestAvroNameMapping.java
@@ -44,6 +44,7 @@ import org.apache.iceberg.types.Types;
 import org.junit.Assert;
 import org.junit.Test;
 
+@SuppressWarnings("unchecked")
 public class TestAvroNameMapping extends TestAvroReadProjection {
   @Test
   public void testMapProjections() throws IOException {