(data []byte, offset int, v uint64)
| 1439 | return offset + 4 |
| 1440 | } |
| 1441 | func encodeVarintSql(data []byte, offset int, v uint64) int { |
| 1442 | for v >= 1<<7 { |
| 1443 | data[offset] = uint8(v&0x7f | 0x80) |
| 1444 | v >>= 7 |
| 1445 | offset++ |
| 1446 | } |
| 1447 | data[offset] = uint8(v) |
| 1448 | return offset + 1 |
| 1449 | } |
| 1450 | func (m *SqlStatementPb) Size() (n int) { |
| 1451 | var l int |
| 1452 | _ = l |