(data []byte, q *QueryEvent)
| 375 | } |
| 376 | |
| 377 | func (p *QueryEventParser) parseAutoIncStatus(data []byte, q *QueryEvent) ( |
| 378 | []byte, |
| 379 | error) { |
| 380 | |
| 381 | q.autoIncIncrement = new(uint16) |
| 382 | data, err := readLittleEndian(data, q.autoIncIncrement) |
| 383 | if err != nil { |
| 384 | return data, err |
| 385 | } |
| 386 | |
| 387 | q.autoIncOffset = new(uint16) |
| 388 | return readLittleEndian(data, q.autoIncOffset) |
| 389 | } |
| 390 | |
| 391 | func (p *QueryEventParser) parseTimeZone(data []byte, q *QueryEvent) ( |
| 392 | []byte, |
no test coverage detected