Skip to content

Commit

Permalink
Merge pull request #18 from SapientGuardian/fix_compression
Browse files Browse the repository at this point in the history
Fixes #17. Changed MySqlStream to use BufferedStream.
  • Loading branch information
SapientGuardian committed Jun 25, 2016
2 parents 0f56934 + 4c64d06 commit be2f7ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/MySql.Data/MySqlStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public MySqlStream(Stream baseStream, Encoding encoding, bool compress)
else
stream = timedStream;

#if RT || NETSTANDARD1_3
#if RT
inStream = baseStream;
#else
inStream = new BufferedStream(stream);
Expand Down
2 changes: 1 addition & 1 deletion Source/MySql.Data/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "6.9.8-rc2-007",
"version": "6.9.8-rc2-008",
"description": "MySQL client library targeting netstandard 1.3",
"authors": [ "Oracle", "SapientGuardian", "ebyte23" ],
"buildOptions": {
Expand Down

0 comments on commit be2f7ca

Please sign in to comment.