We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9aa042 commit 63c341aCopy full SHA for 63c341a
replication/event.go
@@ -610,7 +610,7 @@ func (e *ExecuteLoadQueryEvent) Decode(data []byte) error {
610
}
611
612
func (e *ExecuteLoadQueryEvent) Dump(w io.Writer) {
613
- fmt.Fprintf(w, "Slave proxy ID: %d\n", e.SlaveProxyID)
+ fmt.Fprintf(w, "Slave proxy ID: %d\n", uint32(e.SlaveProxyID))
614
fmt.Fprintf(w, "Execution time: %d\n", e.ExecutionTime)
615
fmt.Fprintf(w, "Schame length: %d\n", e.SchemaLength)
616
fmt.Fprintf(w, "Error code: %d\n", e.ErrorCode)
0 commit comments