Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused table added by mistake from integration test #2478

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public abstract class DistributedTransactionIntegrationTestBase {

protected static final String NAMESPACE_BASE_NAME = "int_test_";
protected static final String TABLE = "test_table";
protected static final String TABLE_2 = "test_table_2";
protected static final String ACCOUNT_ID = "account_id";
protected static final String ACCOUNT_TYPE = "account_type";
protected static final String BALANCE = "balance";
Expand Down Expand Up @@ -138,7 +137,6 @@ private void createTables() throws ExecutionException {
admin.createCoordinatorTables(true, options);
admin.createNamespace(namespace, true, options);
admin.createTable(namespace, TABLE, tableMetadata.build(), true, options);
admin.createTable(namespace, TABLE_2, tableMetadata.build(), true, options);
}

protected Map<String, String> getCreationOptions() {
Expand All @@ -148,7 +146,6 @@ protected Map<String, String> getCreationOptions() {
@BeforeEach
public void setUp() throws Exception {
admin.truncateTable(namespace, TABLE);
admin.truncateTable(namespace, TABLE_2);
admin.truncateCoordinatorTables();
}

Expand Down Expand Up @@ -179,7 +176,6 @@ public void afterAll() throws Exception {

private void dropTables() throws ExecutionException {
admin.dropTable(namespace, TABLE);
admin.dropTable(namespace, TABLE_2);
admin.dropNamespace(namespace);
admin.dropCoordinatorTables();
}
Expand Down
Loading