Skip to content

Commit ccf66f6

Browse files
committed
Added handleParams case to ignore new CLIENT_FOUND_ROWS param.
1 parent 3da3323 commit ccf66f6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

connection.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ func (mc *mysqlConn) handleParams() (err error) {
8282
// Compression
8383
case "compress":
8484
err = errors.New("Compression not implemented yet")
85-
85+
86+
case "CLIENT_FOUND_ROWS":
87+
8688
// System Vars
8789
default:
8890
err = mc.exec("SET " + param + "=" + val + "")

0 commit comments

Comments
 (0)