We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96580ec commit b51e50cCopy full SHA for b51e50c
connection.go
@@ -12,6 +12,7 @@ package mysql
12
import (
13
"bufio"
14
"database/sql/driver"
15
+ "errors"
16
"net"
17
"strings"
18
)
@@ -64,11 +65,12 @@ func (mc *mysqlConn) handleParams() (err error) {
64
65
66
// TLS-Encryption
67
case "tls":
- dbgLog.Print("TLS-Encryption not implemented yet")
68
+ err = errors.New("TLS-Encryption not implemented yet")
69
+ return
70
71
// Compression
72
case "compress":
- dbgLog.Print("Compression not implemented yet")
73
+ err = errors.New("Compression not implemented yet")
74
75
// System Vars
76
default:
0 commit comments