roryqi commented on code in PR #12420:
URL: https://github.com/apache/gravitino/pull/12420#discussion_r3794663113


##########
core/src/main/java/org/apache/gravitino/catalog/SchemaDispatcher.java:
##########
@@ -19,12 +19,68 @@
 
 package org.apache.gravitino.catalog;
 
+import java.util.Collections;
+import java.util.Map;
+import org.apache.gravitino.NameIdentifier;
+import org.apache.gravitino.Schema;
 import org.apache.gravitino.connector.SupportsSchemas;
+import org.apache.gravitino.exceptions.NoSuchCatalogException;
+import org.apache.gravitino.exceptions.SchemaAlreadyExistsException;
+import org.apache.gravitino.secret.SecretBinding;
+import org.apache.gravitino.secret.SecretReference;
 
 /**
  * {@code SchemaDispatcher} interface acts as a specialization of the {@link 
SupportsSchemas}
  * interface. This interface is designed to potentially add custom behaviors 
or operations related
  * to dispatching or handling schema-related events or actions that are not 
covered by the standard
  * {@code SupportsSchemas} operations.
  */
-public interface SchemaDispatcher extends SupportsSchemas {}
+public interface SchemaDispatcher extends SupportsSchemas {

Review Comment:
   The added methods seems unused. Could u remove them?



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