We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74e0794 + 8363417 commit 673ec66Copy full SHA for 673ec66
src/java/org/apache/cassandra/db/compaction/CompactionTask.java
@@ -497,9 +497,8 @@ private void maybeNotifyIndexersAboutRowsInFullyExpiredSSTables(Set<SSTableReade
497
{
498
while (scanner.hasNext())
499
500
- UnfilteredRowIterator partition = scanner.next();
501
-
502
- try (WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
+ try (UnfilteredRowIterator partition = scanner.next();
+ WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
503
504
List<Index.Indexer> indexers = new ArrayList<>();
505
for (int i = 0; i < indexes.size(); i++)
0 commit comments