(ctx context.Context)
| 1088 | } |
| 1089 | |
| 1090 | func (c *changeCache) _getMaxStableCached(ctx context.Context) uint64 { |
| 1091 | oldestSkipped := c.getOldestSkippedSequence(ctx) |
| 1092 | if oldestSkipped > 0 { |
| 1093 | return oldestSkipped - 1 |
| 1094 | } |
| 1095 | return c.nextSequence - 1 |
| 1096 | } |