You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: errors.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ var (
21
21
ErrMalformPkt=errors.New("malformed packet")
22
22
ErrNoTLS=errors.New("TLS requested but server does not support TLS")
23
23
ErrCleartextPassword=errors.New("this user requires clear text authentication. If you still want to use it, please add 'allowCleartextPasswords=1' to your DSN")
24
-
ErrNativePassword=errors.New("this user requires mysql native password authentication.")
24
+
ErrNativePassword=errors.New("this user requires mysql native password authentication")
25
25
ErrOldPassword=errors.New("this user requires old password authentication. If you still want to use it, please add 'allowOldPasswords=1' to your DSN. See also https://github.com/go-sql-driver/mysql/wiki/old_passwords")
26
26
ErrUnknownPlugin=errors.New("this authentication plugin is not supported")
27
27
ErrOldProtocol=errors.New("MySQL server does not support required protocol 41+")
0 commit comments