Skip to content

Commit be2f7ca

Browse files
Merge pull request #18 from SapientGuardian/fix_compression
Fixes #17. Changed MySqlStream to use BufferedStream.
2 parents 0f56934 + 4c64d06 commit be2f7ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: Source/MySql.Data/MySqlStream.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public MySqlStream(Stream baseStream, Encoding encoding, bool compress)
7474
else
7575
stream = timedStream;
7676

77-
#if RT || NETSTANDARD1_3
77+
#if RT
7878
inStream = baseStream;
7979
#else
8080
inStream = new BufferedStream(stream);

Diff for: Source/MySql.Data/project.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.9.8-rc2-007",
2+
"version": "6.9.8-rc2-008",
33
"description": "MySQL client library targeting netstandard 1.3",
44
"authors": [ "Oracle", "SapientGuardian", "ebyte23" ],
55
"buildOptions": {

0 commit comments

Comments
 (0)