mysqlbinlog/get_gtid_of_binlog_test.go
2023-04-25 18:41:34 +08:00

16 lines
292 B
Go

package binlog
import (
"testing"
)
func TestGetGtidOfBinlog(t *testing.T) {
desc, err := GetGtidOfBinlog("./test/mysql-bin56.000003")
if nil != err {
t.Fatalf("unexpected error %v", err)
}
if "F60AB33CC60411E38E1CE66CCF50DB66:1-136" != desc {
t.Fatalf("wrong gtid %v", desc)
}
}