Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Nov 7, 2024
1 parent a7b7da2 commit 48199b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,8 @@ public void testCreateSystemDatabase() {
public void testChangeTableInSystemDatabase() {
sql("USE sys");
assertThatCode(() -> sql("ALTER TABLE all_table_options SET ('bucket-num' = '5')"))
.hasRootCauseMessage("Can't alter system table.");
.rootCause()
.hasMessageContaining("Only support alter data table, but is: ");
}

@Test
Expand Down

0 comments on commit 48199b5

Please sign in to comment.