()
| 24 | ) |
| 25 | |
| 26 | func (e RowEventType) String() string { |
| 27 | switch e { |
| 28 | case DeleteRowEvent: |
| 29 | return "DELETE" |
| 30 | case UpdateRowEvent: |
| 31 | return "UPDATE" |
| 32 | case InsertRowEvent: |
| 33 | return "INSERT" |
| 34 | default: |
| 35 | return "UNKNOWN" |
| 36 | } |
| 37 | } |
no outgoing calls