gh-yzou commented on code in PR #1427:
URL: https://github.com/apache/polaris/pull/1427#discussion_r2059539457


##########
plugins/spark/v3.5/integration/src/intTest/java/org/apache/polaris/spark/quarkus/it/SparkCatalogBaseIT.java:
##########
@@ -258,4 +260,94 @@ void testListViews() throws Exception {
     viewCatalog.dropView(Identifier.of(l1ns, view1Name));
     namespaceCatalog.dropNamespace(l1ns, true);
   }
+
+  @Test
+  void testIcebergTableViewMix() throws Exception {
+    // initiate two namespaces with nesting
+    String[] l1ns = new String[] {"ns"};
+    namespaceCatalog.createNamespace(l1ns, Maps.newHashMap());

Review Comment:
   are you referring to tests like PolarisRestCatalogIntegrationTest, those 
test direct operate with the RestCatalog API, which takes iceberg Namespace as 
an arguments, the test in this suite operate on with the SparkCatalog 
interface, the interface takes String[] as an argument, for example
   ```
   void createNamespace(String[] var1, Map<String, String> var2) throws 
NamespaceAlreadyExistsException;
   ```
   Therefore, I am directly creating string array here.



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