()
| 35 | } |
| 36 | |
| 37 | func (a Attributes) String() string { |
| 38 | s := a.Compression().String() |
| 39 | if a.Transactional() { |
| 40 | s += "+transactional" |
| 41 | } |
| 42 | if a.Control() { |
| 43 | s += "+control" |
| 44 | } |
| 45 | return s |
| 46 | } |
| 47 | |
| 48 | // Header represents a single entry in a list of record headers. |
| 49 | type Header struct { |
nothing calls this directly
no test coverage detected