Skip to content

Commit 1ff8804

Browse files
committed
amend vitess ver.
1 parent 6bb7c16 commit 1ff8804

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71 h1:bMGS25NWAGTE
1818
github.com/dolthub/jsonpath v0.0.2-0.20240227200619-19675ab05c71/go.mod h1:2/2zjLQ/JOOSbbSboojeg+cAwcRV0fDLzIiWch/lhqI=
1919
github.com/dolthub/sqllogictest/go v0.0.0-20201107003712-816f3ae12d81 h1:7/v8q9XGFa6q5Ap4Z/OhNkAMBaK5YeuEzwJt+NZdhiE=
2020
github.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=
2323
github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
2424
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
2525
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=

sql/binlogreplication/binlog_replication.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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.
3231
type 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.
159158
type BinlogReplicaCatalog interface {
160159
// HasBinlogReplicaController returns true if a non-nil BinlogReplicaController is available for this BinlogReplicaCatalog.
161160
HasBinlogReplicaController() bool

0 commit comments

Comments
 (0)