Skip to content

Commit 43f34ab

Browse files
committed
Apply Scott's requested changes
1 parent 65e6688 commit 43f34ab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fdb-record-layer-core/src/test/java/com/apple/foundationdb/record/provider/foundationdb/indexes/VectorIndexEngineTestSuite.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -873,8 +873,8 @@ private FDBStoredRecord<Message> rewriteWithVector(@Nonnull final FDBStoredRecor
873873
*/
874874
@Nonnull
875875
private VectorIndexMaintainer maintainerExcludingRecordsWithoutVector(@Nonnull final Index index) {
876-
final IndexMaintenanceFilter filter = (ignored, record) ->
877-
record instanceof VectorRecord && ((VectorRecord)record).hasVectorData()
876+
final IndexMaintenanceFilter filter = (ignored, rec) ->
877+
rec instanceof VectorRecord && ((VectorRecord)rec).hasVectorData()
878878
? IndexMaintenanceFilter.IndexValues.ALL
879879
: IndexMaintenanceFilter.IndexValues.NONE;
880880
return new VectorIndexMaintainer(new IndexMaintainerState(recordStore, index, filter));

0 commit comments

Comments
 (0)