Skip to content

Commit b2f8f5c

Browse files
authored
Merge pull request #3316 from dolthub/reltuk-8039a988
[auto-bump] [no-release-notes] dependency by reltuk
2 parents 90ae387 + f1befdc commit b2f8f5c

File tree

5 files changed

+15
-1
lines changed

5 files changed

+15
-1
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-20251107003339-843d10a6a8d4
9+
github.com/dolthub/vitess v0.0.0-20251124192614-8039a9881a64
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ github.com/dolthub/vitess v0.0.0-20251105091622-b08b393fd9b1 h1:2uiHo4gkf2n/Cw9u
2626
github.com/dolthub/vitess v0.0.0-20251105091622-b08b393fd9b1/go.mod h1:FLWqdXsAeeBQyFwDjmBVu0GnbjI2MKeRf3tRVdJEKlI=
2727
github.com/dolthub/vitess v0.0.0-20251107003339-843d10a6a8d4 h1:vOF5qPLC0Yd4BN/FKJlRLNELIZZlev40TrckORQqzhA=
2828
github.com/dolthub/vitess v0.0.0-20251107003339-843d10a6a8d4/go.mod h1:FLWqdXsAeeBQyFwDjmBVu0GnbjI2MKeRf3tRVdJEKlI=
29+
github.com/dolthub/vitess v0.0.0-20251124192614-8039a9881a64 h1:E3IfAYxrZ+dXgBHXN9L1ucotg3J8YDCeDr47u78tUI4=
30+
github.com/dolthub/vitess v0.0.0-20251124192614-8039a9881a64/go.mod h1:FLWqdXsAeeBQyFwDjmBVu0GnbjI2MKeRf3tRVdJEKlI=
2931
github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
3032
github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
3133
github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=

server/extension.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ func (ih *interceptorHandler) ConnectionClosed(c *mysql.Conn) {
156156
ih.h.ConnectionClosed(c)
157157
}
158158

159+
func (ih *interceptorHandler) ConnectionAuthenticated(c *mysql.Conn) error {
160+
return ih.h.ConnectionAuthenticated(c)
161+
}
162+
159163
func (ih *interceptorHandler) ConnectionAborted(c *mysql.Conn, reason string) error {
160164
return ih.h.ConnectionAborted(c, reason)
161165
}

server/golden/proxy.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ func (h MySqlProxy) ConnectionClosed(c *mysql.Conn) {
167167
delete(h.conns, c.ConnectionID)
168168
}
169169

170+
func (h MySqlProxy) ConnectionAuthenticated(c *mysql.Conn) error {
171+
return nil
172+
}
173+
170174
// ConnectionAborted implements mysql.Handler.
171175
func (h MySqlProxy) ConnectionAborted(c *mysql.Conn, reason string) error {
172176
return nil

server/golden/validator.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ func (v Validator) ConnectionClosed(c *mysql.Conn) {
9191
v.golden.ConnectionClosed(c)
9292
}
9393

94+
func (v Validator) ConnectionAuthenticated(c *mysql.Conn) error {
95+
return nil
96+
}
97+
9498
func (v Validator) ConnectionAborted(c *mysql.Conn, reason string) error {
9599
return nil
96100
}

0 commit comments

Comments
 (0)