Skip to content

Commit c90108b

Browse files
committed
Disable the test for DynamoDB
1 parent d34ea7a commit c90108b

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

core/integration.sqlite3

200 KB
Binary file not shown.

core/src/integration-test/java/com/scalar/db/storage/dynamo/DynamoAdminCaseSensitivityIntegrationTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ protected AdminTestUtils getAdminTestUtils(String testName) {
2929
return new DynamoAdminTestUtils(getProperties(testName));
3030
}
3131

32+
@Override
33+
@Disabled("DynamoDB does not have a concept of namespaces")
34+
public void
35+
dropNamespace_ForNamespaceWithNonScalarDBManagedTables_ShouldThrowIllegalArgumentException() {}
36+
3237
@Override
3338
@Disabled("DynamoDB does not support dropping columns")
3439
public void dropColumnFromTable_DropColumnForEachExistingDataType_ShouldDropColumnsCorrectly() {}

core/src/integration-test/java/com/scalar/db/storage/dynamo/DynamoAdminIntegrationTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ protected AdminTestUtils getAdminTestUtils(String testName) {
2828
return new DynamoAdminTestUtils(getProperties(testName));
2929
}
3030

31+
@Override
32+
@Disabled("DynamoDB does not have a concept of namespaces")
33+
public void
34+
dropNamespace_ForNamespaceWithNonScalarDBManagedTables_ShouldThrowIllegalArgumentException() {}
35+
3136
@Override
3237
@Disabled("DynamoDB does not support dropping columns")
3338
public void dropColumnFromTable_DropColumnForEachExistingDataType_ShouldDropColumnsCorrectly() {}

0 commit comments

Comments
 (0)