File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ require (
66 github.com/dolthub/go-icu-regex v0.0.0-20250916051405-78a38d478790
77 github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71
88 github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81
9- github.com/dolthub/vitess v0.0.0-20251028193913-81f40a1c3159
9+ github.com/dolthub/vitess v0.0.0-20251030231215-02e4ea14cc3b
1010 github.com/go-sql-driver/mysql v1.9.3
1111 github.com/gocraft/dbr/v2 v2.7.2
1212 github.com/google/uuid v1.3.0
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 h1:bMGS25NWAGTE
1818github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 /go.mod h1:2/2zjLQ/JOOSbbSboojeg+cAwcRV0fDLzIiWch/lhqI =
1919github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81 h1:7/v8q9XGFa6q5Ap4Z/OhNkAMBaK5YeuEzwJt+NZdhiE =
2020github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81 /go.mod h1:siLfyv2c92W1eN/R4QqG/+RjjX5W2+gCTRjZxBjI3TY =
21- github.com/dolthub/vitess v0.0.0-20251028193913-81f40a1c3159 h1:bGH6j79nShRRxCIC++jRLNm1CcEh5TXA5N04C4M+HlA =
22- github.com/dolthub/vitess v0.0.0-20251028193913-81f40a1c3159 /go.mod h1:FLWqdXsAeeBQyFwDjmBVu0GnbjI2MKeRf3tRVdJEKlI =
21+ github.com/dolthub/vitess v0.0.0-20251030231215-02e4ea14cc3b h1:x3qLBtstKCvkJ+8jueHhGzTLnOLvS7B5bwvv+3kzGqA =
22+ github.com/dolthub/vitess v0.0.0-20251030231215-02e4ea14cc3b /go.mod h1:FLWqdXsAeeBQyFwDjmBVu0GnbjI2MKeRf3tRVdJEKlI =
2323github.com/go-sql-driver/mysql v1.4.1 /go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w =
2424github.com/go-sql-driver/mysql v1.5.0 /go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg =
2525github.com/go-sql-driver/mysql v1.6.0 /go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg =
Original file line number Diff line number Diff line change @@ -27,8 +27,7 @@ import (
2727
2828// BinlogReplicaController allows callers to control a binlog replica. Providers built on go-mysql-server may optionally
2929// implement this interface and use it when constructing a SQL engine in order to receive callbacks when replication
30- // statements (e.g. START REPLICA, SHOW REPLICA STATUS) are being handled. This interface also extends BinlogConsumer
31- // to allow the same infrastructure to handle BINLOG statement execution.
30+ // statements (e.g. START REPLICA, SHOW REPLICA STATUS) are being handled.
3231type BinlogReplicaController interface {
3332 // StartReplica tells the binlog replica controller to start up replication processes for the current replication
3433 // configuration. An error is returned if replication was unable to be started. Note the error response only signals
@@ -155,7 +154,7 @@ type ReplicaStatus struct {
155154}
156155
157156// BinlogReplicaCatalog extends the Catalog interface and provides methods for accessing a BinlogReplicaController
158- // for a Catalog. The controller can also be used as a BinlogConsumer for BINLOG statement execution.
157+ // for a Catalog.
159158type BinlogReplicaCatalog interface {
160159 // HasBinlogReplicaController returns true if a non-nil BinlogReplicaController is available for this BinlogReplicaCatalog.
161160 HasBinlogReplicaController () bool
You can’t perform that action at this time.
0 commit comments