Skip to content

Commit

Permalink
print: check if table exist and db exists after db delete was blocked
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgio Trettenero committed Dec 7, 2024
1 parent ef7db85 commit bfc6da8
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ public void testDeleteDbNoCascades() {
polarisDBService.delete(requestContext, DB1_QUALIFIED_NAME);

Assert.assertTrue(polarisTableService.exists(requestContext, qualifiedName));
System.out.println("testDeleteDbNoCascades Table: ");
System.out.println(polarisTableService.get(requestContext, qualifiedName));
Assert.assertTrue(polarisDBService.exists(requestContext, DB1_QUALIFIED_NAME));

}
Expand Down

0 comments on commit bfc6da8

Please sign in to comment.