PGWireFormatTime formats t into a format lib/pq understands, appending to the provided tmp buffer and reallocating if needed. The function will then return the resulting buffer.
(t timeofday.TimeOfDay, tmp []byte)
| 314 | // provided tmp buffer and reallocating if needed. The function will then return |
| 315 | // the resulting buffer. |
| 316 | func PGWireFormatTime(t timeofday.TimeOfDay, tmp []byte) []byte { |
| 317 | return t.AppendFormat(tmp) |
| 318 | } |
| 319 | |
| 320 | // PGWireFormatTimeTZ formats t into a format lib/pq understands, appending to the |
| 321 | // provided tmp buffer and reallocating if needed. The function will then return |
no test coverage detected
searching dependent graphs…