Skip to content

Commit

Permalink
move const flag
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Mar 15, 2024
1 parent 750fe2a commit 7800bd5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions const.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ package mysql
import "runtime"

const (
debugTrace = false // for debugging wire protocol.

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / lint

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / lint

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, 8.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.20, 8.0)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, 8.0)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.21, 8.0)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, mariadb-10.6)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, mariadb-10.5)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, mariadb-11.1)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, mariadb-10.11)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, 5.7)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, 5.7)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, mariadb-10.11)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.22, mariadb-11.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, 8.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, mariadb-11.1)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, 8.0)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, mariadb-10.5)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, mariadb-10.5)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, mariadb-10.6)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, 8.0)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.22, mariadb-11.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, 8.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, mariadb-10.6)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, mariadb-10.11)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, 5.7)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, mariadb-11.3)

debugTrace redeclared in this block

Check failure on line 14 in const.go

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.22, mariadb-11.1)

debugTrace redeclared in this block

defaultAuthPlugin = "mysql_native_password"
defaultMaxAllowedPacket = 64 << 20 // 64 MiB. See https://github.com/go-sql-driver/mysql/issues/1355
minProtocolVersion = 10
Expand Down

0 comments on commit 7800bd5

Please sign in to comment.