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


##########
service/common/src/main/java/org/apache/polaris/service/catalog/generic/GenericTableCatalogAdapter.java:
##########
@@ -19,7 +19,52 @@
 package org.apache.polaris.service.catalog.generic;
 
 import jakarta.enterprise.context.RequestScoped;
+import jakarta.ws.rs.core.Response;
+import jakarta.ws.rs.core.SecurityContext;
+import org.apache.polaris.core.context.RealmContext;
 import 
org.apache.polaris.service.catalog.api.PolarisCatalogGenericTableApiService;
+import org.apache.polaris.service.types.CreateGenericTableRequest;
 
 @RequestScoped
-public class GenericTableCatalogAdapter implements 
PolarisCatalogGenericTableApiService {}
+public class GenericTableCatalogAdapter implements 
PolarisCatalogGenericTableApiService {
+  @Override
+  public Response createGenericTable(
+      String prefix,
+      String namespace,
+      CreateGenericTableRequest createGenericTableRequest,
+      RealmContext realmContext,
+      SecurityContext securityContext) {
+    return Response.status(501).build(); // not implemented

Review Comment:
   These methods will come in a followup PR



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