Skip to content

Commit

Permalink
Fix SortedTermsReader.Cursor not closing blockOffsets
Browse files Browse the repository at this point in the history
  • Loading branch information
adelapena committed Oct 2, 2024
1 parent b28eb42 commit 4db0525
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,9 @@ public void reset() throws IOException
@Override
public void close() throws IOException
{
this.termsData.close();
this.reader.close();
blockOffsets.close();
termsData.close();
reader.close();
}
}
}

1 comment on commit 4db0525

@cassci-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build rejected: 7 NEW test failure(s) in 3 builds., Build 3: ran 17705 tests with 14 failures and 128 skipped.
Butler analysis done on ds-cassandra-pr-gate/CNDB-11092-main vs last 16 runs of ds-cassandra-build-nightly/main.
org.apache.cassandra.index.sai.cql.TinySegmentQueryWriteLifecycleTest.testWriteLifecycle[aa_CompoundKeyDataModel{primaryKey=p, c}]: test is constantly failing. No failures on upstream;
branch story: [F] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.io.sstable.format.GlobalTidyConcurrencyTest.tidyVsGetRaceTest: test failed in the recent build. No failures on upstream;
branch story: [F++] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.disk.vector.VectorCompressionTest.testOpenAiV3Small: test looks flaky. No failures on upstream;
branch story: [+F+] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.disk.vector.VectorCompressionTest.testOpenAiV3Large: test looks flaky. No failures on upstream;
branch story: [+F+] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.cql.types.collections.sets.SetFloatTest.test[version=ca,dataset=set,wide=false,scenario=SSTABLE_QUERY]: test looks flaky. No failures on upstream;
branch story: [+F+] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.cql.VectorSiftSmallTest.testMultiSegmentBuild: test is constantly failing. No failures on upstream;
branch story: [FFF] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
org.apache.cassandra.index.sai.cql.QueryWriteLifecycleTest.testWriteLifecycle[aa_CompoundKeyWithStaticsDataModel{primaryKey=p, c}]: test is constantly failing. No failures on upstream;
branch story: [F] vs upstream: [++++++++++++++++++++++++++++++++++++++++++++++++++++++++]; [NEW]
butler comparison

Please sign in to comment.