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 4824ecc + 591ad81 commit 8363417Copy full SHA for 8363417
src/java/org/apache/cassandra/db/compaction/CompactionTask.java
@@ -473,9 +473,8 @@ private void maybeNotifyIndexersAboutRowsInFullyExpiredSSTables(Set<SSTableReade
473
{
474
while (scanner.hasNext())
475
476
- UnfilteredRowIterator partition = scanner.next();
477
-
478
- try (WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
+ try (UnfilteredRowIterator partition = scanner.next();
+ WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
479
480
List<Index.Indexer> indexers = new ArrayList<>();
481
for (int i = 0; i < indexes.size(); i++)
0 commit comments