Skip to content

Commit

Permalink
delete incorrectly added code
Browse files Browse the repository at this point in the history
  • Loading branch information
llama90 committed Jun 7, 2024
1 parent 2171f33 commit 73ea3e0
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,10 +311,6 @@ public void testVectorAllocateNew() {
@Test
public void testLargeVariableVectorReallocation() {
assertThrows(OversizedAllocationException.class, () -> {
try (final LargeVarCharVector vector = new LargeVarCharVector("vector", allocator)) {
vector.allocateNew(10000, 1000);
vector.reAlloc();
}
final LargeVarCharVector vector = new LargeVarCharVector("vector", allocator);
// edge case 1: value count = MAX_VALUE_ALLOCATION
final long expectedAllocationInBytes = BaseValueVector.MAX_ALLOCATION_SIZE;
Expand Down

0 comments on commit 73ea3e0

Please sign in to comment.