Skip to content

Commit 9a825e9

Browse files
committed
Fix to remove secondary indexes from metadta
1 parent 3ad6658 commit 9a825e9

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

integration-test/src/main/java/com/scalar/db/api/DistributedStorageAdminRepairTableIntegrationTestBase.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,6 @@ protected TableMetadata getTableMetadata() {
7373
.addPartitionKey(COL_NAME1)
7474
.addClusteringKey(COL_NAME4, Scan.Ordering.Order.ASC)
7575
.addClusteringKey(COL_NAME3, Scan.Ordering.Order.DESC)
76-
.addSecondaryIndex(COL_NAME5)
77-
.addSecondaryIndex(COL_NAME6)
7876
.build();
7977
return builder.build();
8078
}

integration-test/src/main/java/com/scalar/db/api/DistributedTransactionAdminRepairTableIntegrationTestBase.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ protected TableMetadata getTableMetadata() {
6868
.addPartitionKey(COL_NAME1)
6969
.addClusteringKey(COL_NAME4, Scan.Ordering.Order.ASC)
7070
.addClusteringKey(COL_NAME3, Scan.Ordering.Order.DESC)
71-
.addSecondaryIndex(COL_NAME5)
72-
.addSecondaryIndex(COL_NAME6)
7371
.build();
7472
return builder.build();
7573
}

0 commit comments

Comments
 (0)