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
Summary:
This diff grabs changes from original connector that were made in 2.1.3, 2.1.4 and 2.1.5 releases:
- Add better FormatException message for Guid types
- Update StyleCop version
- Update Microsoft.NET.Test.Sdk to 17.0.0
- Loop to read all data when decompressing. Fixesmysql-net#1120
- Eliminate unnecessary allocations for constant payloads
- Fix extra indentation (ConnectionTests.cs, DataAdapterTests.cs, SslTests.cs)
- Speed up inserts with MySqlDataAdapter. Fixesmysql-net#1124
- Include "special" bytes in blob insert test to ensure that these values are escaped properly
Test Plan: https://app.circleci.com/pipelines/github/memsql/SingleStoreNETConnector/239/workflows/1facf76f-076a-47d5-86d6-2cb4d8a887a9
Reviewers: pmishchenko-ua
Reviewed By: pmishchenko-ua
Subscribers: engineering-list
JIRA Issues: PLAT-6408
Differential Revision: https://grizzly.internal.memcompute.com/D61592
From PomeloFoundation/Pomelo.EntityFrameworkCore.MySql#1607.
Per https://docs.microsoft.com/en-us/dotnet/core/compatibility/core-libraries/6.0/partial-byte-reads-in-streams, under .NET 6.0 applications should repeatedly call
Stream.Read
until all data is read. MySqlConnector does not do this, leading to command timeouts.The text was updated successfully, but these errors were encountered: