mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-5.0' into trunk
This commit is contained in:
commit
cd7213f1f9
|
|
@ -549,9 +549,8 @@ public class CompactionTask extends AbstractCompactionTask
|
|||
{
|
||||
while (scanner.hasNext())
|
||||
{
|
||||
UnfilteredRowIterator partition = scanner.next();
|
||||
|
||||
try (WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
|
||||
try (UnfilteredRowIterator partition = scanner.next();
|
||||
WriteContext ctx = cfs.keyspace.getWriteHandler().createContextForIndexing())
|
||||
{
|
||||
List<Index.Indexer> indexers = new ArrayList<>();
|
||||
for (int i = 0; i < indexes.size(); i++)
|
||||
|
|
|
|||
Loading…
Reference in New Issue