(m *Map, buf []byte)
| 530 | } |
| 531 | |
| 532 | func NewCompositeTextBuilder(m *Map, buf []byte) *CompositeTextBuilder { |
| 533 | buf = append(buf, '(') // allocate room for number of fields |
| 534 | return &CompositeTextBuilder{m: m, buf: buf} |
| 535 | } |
| 536 | |
| 537 | func (b *CompositeTextBuilder) AppendValue(oid uint32, field any) { |
| 538 | if b.err != nil { |