FANNG1 commented on code in PR #8172:
URL: https://github.com/apache/gravitino/pull/8172#discussion_r2290498738


##########
web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js:
##########
@@ -217,7 +230,7 @@ const CreateCatalogDialog = props => {
 
     if (
       propItems[0]?.key === 'catalog-backend' &&
-      propItems[0]?.value === 'hive' &&
+      ['hive', 'rest'].includes(propItems[0]?.value) &&

Review Comment:
   why not including `jdbc`?



##########
web/web/src/app/metalakes/metalake/rightContent/CreateCatalogDialog.js:
##########
@@ -274,26 +280,21 @@ const CreateCatalogDialog = props => {
 
         if (
           catalogBackend &&
-          catalogBackend === 'hive' &&
+          ['rest', 'hive'].includes(catalogBackend) &&

Review Comment:
   why not including `jdbc`?



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