Skip to content

Commit

Permalink
[FLINK-36106][autoscaler] Clean up the t_flink_autoscaler_event_handl…
Browse files Browse the repository at this point in the history
…er table after each test
  • Loading branch information
1996fanrui committed Aug 21, 2024
1 parent c8a6ca8 commit 84c1934
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class MySQLExtension implements BeforeAllCallback, AfterAllCallback, AfterEachCa
private static final String DATABASE_NAME = "flink_autoscaler";
private static final String USER_NAME = "root";
private static final String PASSWORD = "123456";
private static final List<String> TABLES = List.of("t_flink_autoscaler_state_store");
private static final List<String> TABLES =
List.of("t_flink_autoscaler_state_store", "t_flink_autoscaler_event_handler");

private final MySQLContainer<?> container;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class PostgreSQLExtension implements BeforeAllCallback, AfterAllCallback, AfterE
private static final String DATABASE_NAME = "flink_autoscaler";
private static final String USER_NAME = "root";
private static final String PASSWORD = "123456";
private static final List<String> TABLES = List.of("t_flink_autoscaler_state_store");
private static final List<String> TABLES =
List.of("t_flink_autoscaler_state_store", "t_flink_autoscaler_event_handler");

private final PostgreSQLContainer<?> container;

Expand Down

0 comments on commit 84c1934

Please sign in to comment.