()
| 52 | } |
| 53 | |
| 54 | func NewBinlogEntry() *DataEntry { |
| 55 | binlogEntry := &DataEntry{ |
| 56 | Events: make([]DataEvent, 0), |
| 57 | } |
| 58 | return binlogEntry |
| 59 | } |
| 60 | |
| 61 | func (b *DataEntry) HasDDL() bool { |
| 62 | for i := range b.Events { |
no outgoing calls
no test coverage detected