-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: idimetrix/mysql-1
base: master
head repository: go-sql-driver/mysql
compare: master
- 20 commits
- 23 files changed
- 24 contributors
Commits on Nov 10, 2024
-
Specify a custom dial function per config (go-sql-driver#1527)
Specify a custom dial function per config instead of using RegisterDialContext.
Configuration menu - View commit details
-
Copy full SHA for 91ad4fb - Browse repository at this point
Copy the full SHA 91ad4fbView commit details
Commits on Nov 11, 2024
-
ci: update Go and staticcheck versions (go-sql-driver#1639)
- Add Go 1.23 support - Remove Go 1.20 support - Update staticcheck action
Configuration menu - View commit details
-
Copy full SHA for fc64d3f - Browse repository at this point
Copy the full SHA fc64d3fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f62f523 - Browse repository at this point
Copy the full SHA f62f523View commit details
Commits on Nov 19, 2024
-
Check if MySQL supports CLIENT_CONNECT_ATTRS before sending client at…
…tributes. (go-sql-driver#1640)
Configuration menu - View commit details
-
Copy full SHA for 41a5fa2 - Browse repository at this point
Copy the full SHA 41a5fa2View commit details
Commits on Nov 21, 2024
-
Reduce "busy buffer" logs (go-sql-driver#1641)
Reduce the use of `errBadConnNoWrite` to improve maintainability. ResetSession() and IsValid() checks if the buffer is busy. This reduces the risk of busy buffer error during connection in use. In principle, the risk of this is zero. So I removed errBadConnNoWrite when checking the busy buffer. After this change, only `writePacke()` returns errBadConnNoWrite. Additionally, I do not send COM_QUIT when readPacket() encounter read error. It caused "busy buffer" error too and hide real errors.
Configuration menu - View commit details
-
Copy full SHA for 9c8d6a5 - Browse repository at this point
Copy the full SHA 9c8d6a5View commit details
Commits on Nov 27, 2024
-
stmt.Close() returns nil when double close (go-sql-driver#1642)
ErrBadConn needs special care to ensure it is safe to retry. To improve maintenance, I don't want to use the error where I don't have to. Additionally, update the old comment about Go's bug that had been fixed long time ago.
Configuration menu - View commit details
-
Copy full SHA for 2df7a26 - Browse repository at this point
Copy the full SHA 2df7a26View commit details
Commits on Dec 1, 2024
-
stop double-buffering (go-sql-driver#1643)
Since we dropped Go 1.20 support, we do not need double buffering. This pull request stop double buffering and simplify buffer implementation a lot. Fix go-sql-driver#1435
Configuration menu - View commit details
-
Copy full SHA for 575e1b2 - Browse repository at this point
Copy the full SHA 575e1b2View commit details
Commits on Dec 15, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c9f41c0 - Browse repository at this point
Copy the full SHA c9f41c0View commit details
Commits on Dec 19, 2024
-
Implement zlib compression (go-sql-driver#1487)
Implemented the SQL compression protocol. This new feature is enabled by: * Adding `compress=true` in DSN. * `cfg.Apply(Compress(True))` Co-authored-by: Brigitte Lamarche <[email protected]> Co-authored-by: Julien Schmidt <[email protected]> Co-authored-by: Jeffrey Charles <[email protected]> Co-authored-by: Jeff Hodges <[email protected]> Co-authored-by: Daniel Montoya <[email protected]> Co-authored-by: Justin Li <[email protected]> Co-authored-by: Dave Stubbs <[email protected]> Co-authored-by: Linh Tran Tuan <[email protected]> Co-authored-by: Robert R. Russell <[email protected]> Co-authored-by: INADA Naoki <[email protected]> Co-authored-by: Kieron Woodhouse <[email protected]> Co-authored-by: Alexey Palazhchenko <[email protected]> Co-authored-by: Reed Allman <[email protected]> Co-authored-by: Joe Mann <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3348e57 - Browse repository at this point
Copy the full SHA 3348e57View commit details
Commits on Dec 20, 2024
-
use binary.LittleEndian (go-sql-driver#1651)
Recent Go does inlinine functions well. Using `LittleEndian.Put*` would better for readability and minimize bound check. Additionally, Go 1.19 introduced `LittleEndian.Append*`. It reduce more code.
Configuration menu - View commit details
-
Copy full SHA for b335ed3 - Browse repository at this point
Copy the full SHA b335ed3View commit details
Commits on Dec 24, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7403860 - Browse repository at this point
Copy the full SHA 7403860View commit details
Commits on Jan 22, 2025
-
better max_allowed_packet parsing (go-sql-driver#1661)
Remove `stringToInt()` and use `strconv.Atoi` instead.
Configuration menu - View commit details
-
Copy full SHA for 255d1ad - Browse repository at this point
Copy the full SHA 255d1adView commit details
Commits on Jan 23, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 85c6311 - Browse repository at this point
Copy the full SHA 85c6311View commit details
Commits on Jan 29, 2025
-
Fix auth_switch_request packet handling
auth_data contains last NUL. Fix go-sql-driver#1666 Signed-off-by: Bes Dollma (bdollma) <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 341a5a5 - Browse repository at this point
Copy the full SHA 341a5a5View commit details
Commits on Feb 18, 2025
-
fix flaky test. (go-sql-driver#1663)
TestIssue1567 fails by max_connections error. This makes our CI unhappy. https://github.com/go-sql-driver/mysql/actions/runs/12904961433/job/35984402310
Configuration menu - View commit details
-
Copy full SHA for 5d1bb8a - Browse repository at this point
Copy the full SHA 5d1bb8aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 58941dd - Browse repository at this point
Copy the full SHA 58941ddView commit details
Commits on Mar 10, 2025
-
Configuration menu - View commit details
-
Copy full SHA for c879816 - Browse repository at this point
Copy the full SHA c879816View commit details -
Configuration menu - View commit details
-
Copy full SHA for 88ff88b - Browse repository at this point
Copy the full SHA 88ff88bView commit details
Commits on Mar 14, 2025
-
go.mod: fix go version format (go-sql-driver#1682)
As of Go 1.21, toolchain versions must use the 1.N.P syntax. https://go.dev/doc/toolchain#version
Configuration menu - View commit details
-
Copy full SHA for b84ac5a - Browse repository at this point
Copy the full SHA b84ac5aView commit details
Commits on Mar 21, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 1fbafa8 - Browse repository at this point
Copy the full SHA 1fbafa8View commit details
There are no files selected for viewing