String returns the string format of DBID
()
| 70 | |
| 71 | // String returns the string format of DBID |
| 72 | func (id DBID) String() string { |
| 73 | return fmt.Sprintf("%03d", id) |
| 74 | } |
| 75 | |
| 76 | // Bytes DBID returns a byte slice |
| 77 | func (id DBID) Bytes() []byte { |
no outgoing calls