You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@iceberg.apache.org by "nastra (via GitHub)" <gi...@apache.org> on 2023/04/06 09:45:57 UTC

[GitHub] [iceberg] nastra commented on pull request #7283: Bump Nessie to 0.56.0

nastra commented on PR #7283:
URL: https://github.com/apache/iceberg/pull/7283#issuecomment-1498781321

   Does that mean we could now add the following test to verify that `NoSuchNamespaceException` is thrown?
   ```
     @Test
     public void testTableCreationWithoutNamespace() {
       Assume.assumeTrue(requiresNamespaceCreate());
   
       Assertions.assertThatThrownBy(
               () ->
                   catalog()
                       .buildTable(TableIdentifier.of("non-existing-namespace", "table"), SCHEMA)
                       .create())
           .isInstanceOf(NoSuchNamespaceException.class)
           .hasMessage("...");
     }
   ```


-- 
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: issues-unsubscribe@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@iceberg.apache.org
For additional commands, e-mail: issues-help@iceberg.apache.org