Skip to content

Commit

Permalink
PRESTODB-22502: Remover OrcSelectiveRecordReader.close
Browse files Browse the repository at this point in the history
  • Loading branch information
seyeh authored and sdruzkin committed Apr 17, 2024
1 parent 19ea95b commit 174cc2d
Showing 1 changed file with 0 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,6 @@

public class TestPage
{
@Test
public void testAppendColumn()
{
Page page = new Page(10);
Page region = page.getRegion(0, 10);
assertEquals(page.getRegion(5, 5).getPositionCount(), 5);
assertEquals(region.getPositionCount(), 10);
assertSame(page, region);
}
@Test
public void testGetRegion()
{
Expand Down Expand Up @@ -77,16 +68,6 @@ public void testGetRegionFromNoColumnPage()
assertEquals(new Page(100).getRegion(0, 10).getPositionCount(), 10);
}

@Test
public void testPrependColumn()
{
Page page = new Page(10);
Page region = page.getRegion(0, 10);
assertEquals(page.getRegion(5, 5).getPositionCount(), 5);
assertEquals(region.getPositionCount(), 10);
assertSame(page, region);
}

@Test
public void testSizesForNoColumnPage()
{
Expand Down

0 comments on commit 174cc2d

Please sign in to comment.