Skip to content
Merged
Changes from 1 commit
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 @@ -737,7 +737,8 @@ public void createIndex_ForNonExistingColumn_ShouldThrowIllegalArgumentException
// Act Assert
assertThatThrownBy(
() ->
admin.createIndex(namespace1, TABLE1, "non-existing_column", getCreationOptions()))
admin.createIndex(
namespace1, getTable1(), "non-existing_column", getCreationOptions()))
.isInstanceOf(IllegalArgumentException.class);
}

Expand Down Expand Up @@ -906,7 +907,7 @@ public void dropIndex_ForNonExistingTable_ShouldThrowIllegalArgumentException()
// Arrange

// Act Assert
assertThatThrownBy(() -> admin.dropIndex(namespace1, "non-existing-table", COL_NAME2))
assertThatThrownBy(() -> admin.dropIndex(namespace1, "non-existing-table", getColumnName2()))
.isInstanceOf(IllegalArgumentException.class);
}

Expand All @@ -915,7 +916,7 @@ public void dropIndex_ForNonExistingIndex_ShouldThrowIllegalArgumentException()
// Arrange

// Act Assert
assertThatThrownBy(() -> admin.dropIndex(namespace1, TABLE1, COL_NAME2))
assertThatThrownBy(() -> admin.dropIndex(namespace1, getTable1(), getColumnName2()))
.isInstanceOf(IllegalArgumentException.class);
}

Expand Down