(buf *ByteBuffer, value []int8)
| 483 | } |
| 484 | |
| 485 | func writeInt8ListValues(buf *ByteBuffer, value []int8) { |
| 486 | if len(value) > 0 { |
| 487 | buf.WriteBinary(unsafe.Slice((*byte)(unsafe.Pointer(&value[0])), len(value))) |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | func readInt8ListValues(buf *ByteBuffer, err *Error, length int, hasNull bool) []int8 { |
| 492 | result := make([]int8, length) |
no test coverage detected