riemenschneider commented on code in PR #13697: URL: https://github.com/apache/iceberg/pull/13697#discussion_r2246912212
########## core/src/test/java/org/apache/iceberg/TestSchemaUpdate.java: ########## @@ -779,6 +779,22 @@ public void testAddRequiredColumnCaseInsensitive() { .hasMessage("Cannot add column, name already exists: ID"); } + @Test + public void testAddMultipleRequiredColumnCaseInsensitive() { + Schema schema = new Schema(required(1, "id", Types.IntegerType.get())); + + assertThatThrownBy( + () -> + new SchemaUpdate(schema, 1) + .caseSensitive(false) + .allowIncompatibleChanges() Review Comment: To be honest, I simply took the existing test `testAddRequiredColumnCaseInsensitive()` and adapted it so that it reproduces the error without paying attention to the minimality of the test. -- 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