snazy commented on code in PR #3347:
URL: https://github.com/apache/polaris/pull/3347#discussion_r2675207213
##########
polaris-core/src/main/java/org/apache/polaris/core/storage/azure/AzureStorageConfigurationInfo.java:
##########
@@ -58,6 +58,10 @@ public StorageType getStorageType() {
@Nullable
public abstract String getConsentUrl();
+ /** The flag indicating whether the storage account supports hierarchical
namespaces. */
+ @Nullable
+ public abstract Boolean isHierarchical();
Review Comment:
```suggestion
@JsonInclude(JsonInclude.Include.NON_NULL)
public abstract Boolean isHierarchical();
```
Could actually also be (primitive):
```suggestion
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public abstract boolean isHierarchical();
```
Both help with serialization size and backwards compatiblity.
--
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]