(ctx context.Context, docID, revID string, collectionID uint32, toDelta RevisionDelta)
| 66 | } |
| 67 | |
| 68 | func (sc *ShardedLRURevisionCache) UpdateDelta(ctx context.Context, docID, revID string, collectionID uint32, toDelta RevisionDelta) { |
| 69 | sc.getShard(docID).UpdateDelta(ctx, docID, revID, collectionID, toDelta) |
| 70 | } |
| 71 | |
| 72 | func (sc *ShardedLRURevisionCache) UpdateDeltaCV(ctx context.Context, docID string, cv *Version, collectionID uint32, toDelta RevisionDelta) { |
| 73 | sc.getShard(docID).UpdateDeltaCV(ctx, docID, cv, collectionID, toDelta) |
nothing calls this directly
no test coverage detected