justinmclean opened a new issue, #8417:
URL: https://github.com/apache/gravitino/issues/8417
### What would you like to be improved?
Issue occurs in
catalogs/catalog-jdbc-starrocks/src/main/java/org/apache/gravitino/catalog/starrocks/operations/StarRocksTableOperations.java
Here's a test to show that:
```
@Test
public void testUnsupportedPropertyThrows() {
StarRocksTableOperations operations = new StarRocksTableOperations();
TableChange.SetProperty change = new
TableChange.SetProperty("unsupported.property", "value");
Assertions.assertThrows(
IllegalArgumentException.class,
() -> operations.generateAlterTableSql("db", "tbl", change));
}
```
### How should we improve?
see above
--
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]