justinmclean opened a new issue, #8016:
URL: https://github.com/apache/gravitino/issues/8016
### What would you like to be improved?
Error exists in
catalogs/catalog-lakehouse-paimon/src/main/java/org/apache/gravitino/catalog/lakehouse/paimon/utils/TableOpsUtils.java
Test that shows the issue:
```
@Test
void testAddColumnWithNullDefaultValue() {
assertTableChange(
addColumn(
getFieldName("col_5"), IntegerType.get(), (Expression) null),
AddColumn.class,
schemaChange -> {
AddColumn addColumn = (AddColumn) schemaChange;
assertEquals("col_5", addColumn.fieldName());
});
}
```
### How should we improve?
Make the test pass
--
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]