nastra commented on code in PR #10284: URL: https://github.com/apache/iceberg/pull/10284#discussion_r1639863717
########## arrow/src/test/java/org/apache/iceberg/arrow/vectorized/ArrowReaderTest.java: ########## @@ -263,6 +265,60 @@ public void testReadColumnFilter2() throws Exception { scan, NUM_ROWS_PER_MONTH, 12 * NUM_ROWS_PER_MONTH, ImmutableList.of("timestamp")); } + @Test + public void testIssue10275() throws Exception { + rowsWritten = Lists.newArrayList(); + tables = new HadoopTables(); + tableLocation = tempDir.toURI().toString(); + + // Define the initial table schema + final Schema customSchema = + new Schema( + Types.NestedField.required(1, "a", Types.IntegerType.get()), + Types.NestedField.optional(2, "b", Types.StringType.get()), + Types.NestedField.required(3, "c", Types.DecimalType.of(12, 3))); + + // Create the table Review Comment: can be removed -- 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