eric-maynard commented on code in PR #216:
URL: https://github.com/apache/polaris/pull/216#discussion_r1733370198


##########
polaris-service/src/main/java/org/apache/polaris/service/catalog/BasePolarisCatalog.java:
##########
@@ -1143,12 +1143,19 @@ private class BasePolarisCatalogViewBuilder extends 
BaseMetastoreViewCatalog.Bas
 
     public BasePolarisCatalogViewBuilder(TableIdentifier identifier) {
       super(identifier);
+      withProperties(viewDefaultProperties());
     }
 
     @Override
     public ViewBuilder withLocation(String newLocation) {
       return super.withLocation(transformTableLikeLocation(newLocation));
     }
+
+    private Map<String, String> viewDefaultProperties() {
+      Map<String, String> viewDefaultProperties = 
PropertyUtil.propertiesWithPrefix(BasePolarisCatalog.this.properties(), 
"table-default.");
+      LOGGER.info("View properties set at catalog level through catalog 
properties: {}", viewDefaultProperties);

Review Comment:
   That's a fair point. I'm also okay with removing the log. I just don't think 
it should be at the `INFO` level



-- 
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]

Reply via email to