@Override
 public void checkCanSetCatalogSessionProperty(
     TransactionId transactionId, Identity identity, String catalogName, String propertyName) {
   if (shouldDenyPrivilege(identity.getUser(), catalogName + "." + propertyName, SET_SESSION)) {
     denySetCatalogSessionProperty(catalogName, propertyName);
   }
   if (denyPrivileges.isEmpty()) {
     super.checkCanSetCatalogSessionProperty(transactionId, identity, catalogName, propertyName);
   }
 }