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