Get is for per collection access to Get method
(ctx context.Context, docID, revID string, includeDelta bool)
| 146 | |
| 147 | // Get is for per collection access to Get method |
| 148 | func (c *collectionRevisionCache) GetWithRev(ctx context.Context, docID, revID string, includeDelta bool) (DocumentRevision, error) { |
| 149 | return (*c.revCache).GetWithRev(ctx, docID, revID, c.collectionID, includeDelta) |
| 150 | } |
| 151 | |
| 152 | // Get is for per collection access to Get method |
| 153 | func (c *collectionRevisionCache) GetWithCV(ctx context.Context, docID string, cv *Version, includeDelta bool, loadBackup bool) (DocumentRevision, error) { |
nothing calls this directly
no test coverage detected