Skip to content

Commit b5c3b4c

Browse files
committed
added filter for vector lengths
1 parent 3cf763e commit b5c3b4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posting/index.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,6 @@ func (mp *MutationPipeline) ProcessSingle(ctx context.Context, pipeline *Predica
676676
key := baseKey + string(dataKey[len(dataKey)-8:])
677677

678678
if !info.noConflict {
679-
fmt.Println("Creating token", farm.Fingerprint64([]byte(key)), uid, pipeline.attr)
680679
mp.txn.addConflictKey(farm.Fingerprint64([]byte(key)))
681680
}
682681

@@ -748,6 +747,7 @@ func (mp *MutationPipeline) ProcessPredicate(ctx context.Context, pipeline *Pred
748747
info.reverse = schema.State().IsReversed(ctx, pipeline.attr)
749748
info.noConflict = schema.State().HasNoConflict(pipeline.attr)
750749
info.hasUpsert = schema.State().HasUpsert(pipeline.attr)
750+
info.isList = schema.State().IsList(pipeline.attr)
751751
}
752752

753753
runListFn := false

0 commit comments

Comments
 (0)