()
| 573 | } |
| 574 | |
| 575 | func (a attributeSummary) totalStringCount() uint64 { |
| 576 | total := uint64(0) |
| 577 | for _, a := range a.attributes { |
| 578 | total += a.cardinality.totalOccurrences() |
| 579 | } |
| 580 | return total |
| 581 | } |
| 582 | |
| 583 | func (a attributeSummary) totalIntegerCount() uint64 { |
| 584 | total := uint64(0) |
no test coverage detected