Skip to content

Commit

Permalink
see if the test error is due to schema change
Browse files Browse the repository at this point in the history
  • Loading branch information
Giorgio Trettenero committed Dec 4, 2024
1 parent 59b28b1 commit 6eb29c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ create table TBLS (
created_date TIMESTAMP not null,
last_updated_by STRING(255),
last_updated_date TIMESTAMP not null,
foreign key (db_name) references DBS(name) ON UPDATE CASCADE
foreign key (db_name) references DBS(name) ON DELETE CASCADE ON UPDATE CASCADE
);
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ public void testDeleteDbNoCascades() {
Assert.assertTrue(polarisTableService.exists(requestContext, qualifiedName));

polarisDBService.delete(requestContext, DB1_QUALIFIED_NAME);
Assert.assertTrue(polarisDBService.exists(requestContext, DB1_QUALIFIED_NAME));
}
}

0 comments on commit 6eb29c3

Please sign in to comment.