(ctx context.Context, docID, revID string, collectionID uint32, includeDelta bool)
| 54 | } |
| 55 | |
| 56 | func (sc *ShardedLRURevisionCache) GetWithRev(ctx context.Context, docID, revID string, collectionID uint32, includeDelta bool) (docRev DocumentRevision, err error) { |
| 57 | return sc.getShard(docID).GetWithRev(ctx, docID, revID, collectionID, includeDelta) |
| 58 | } |
| 59 | |
| 60 | func (sc *ShardedLRURevisionCache) GetWithCV(ctx context.Context, docID string, cv *Version, collectionID uint32, includeDelta bool, loadBackup bool) (docRev DocumentRevision, err error) { |
| 61 | return sc.getShard(docID).GetWithCV(ctx, docID, cv, collectionID, includeDelta, loadBackup) |
nothing calls this directly
no test coverage detected