FANNG1 commented on code in PR #7125:
URL: https://github.com/apache/gravitino/pull/7125#discussion_r2079285162
##########
iceberg/iceberg-rest-server/src/test/java/org/apache/gravitino/iceberg/integration/test/IcebergRESTServiceIT.java:
##########
@@ -45,14 +45,25 @@
@TestInstance(Lifecycle.PER_CLASS)
public abstract class IcebergRESTServiceIT extends IcebergRESTServiceBaseIT {
- protected static final String ICEBERG_REST_NS_PREFIX = "iceberg_rest_";
+ protected boolean supportsNestedNamespaces = true;
Review Comment:
Could you use two methods to represent the capacibilities? like
```java
bool supportsNestedNamespaces() {
return true;
}
String getTestNamespace() {
if (supportsNestedNamespaces()) {
return "iceberg_rest.nested.table_test"
}
return "iceberg_rest";
}
```
--
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]