()
| 621 | } |
| 622 | |
| 623 | func (c cardinality) totalOccurrences() uint64 { |
| 624 | total := uint64(0) |
| 625 | for _, count := range c { |
| 626 | total += count |
| 627 | } |
| 628 | return total |
| 629 | } |
| 630 | |
| 631 | // dictionarySize is the estimated total size of a compressed dictionary for this attribute. |
| 632 | func (c cardinality) dictionarySize() uint64 { |
no outgoing calls
no test coverage detected