Skip to content

Commit 885f788

Browse files
committed
Mark a Connector/NET bug as fixed.
1 parent 745bb8f commit 885f788

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/content/tutorials/migrating-from-connector-net.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
234234
* [#93370](https://bugs.mysql.com/bug.php?id=93370): `MySqlParameterCollection.Add` precondition check isn't consistent
235235
* [#93374](https://bugs.mysql.com/bug.php?id=93374): `MySqlDataReader.GetStream` throws `IndexOutOfRangeException`
236236
* [#93825](https://bugs.mysql.com/bug.php?id=93825): `MySqlException` loses data when serialized
237-
* [#94075](https://bugs.mysql.com/bug.php?id=94075): `MySqlCommand.Cancel` throws exception
237+
* ~~[#94075](https://bugs.mysql.com/bug.php?id=94075): `MySqlCommand.Cancel` throws exception~~
238238
* [#94760](https://bugs.mysql.com/bug.php?id=94760): `MySqlConnection.OpenAsync(CancellationToken)` doesn’t respect cancellation token
239239
* [#95348](https://bugs.mysql.com/bug.php?id=95348): Inefficient query when executing stored procedures
240240
* [#95436](https://bugs.mysql.com/bug.php?id=95436): Client doesn't authenticate with PEM certificate

tests/SideBySide/CommandTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public void CloneCommand()
276276
Assert.NotEqual(0m, cmd2.Parameters[0].Value);
277277
}
278278

279-
[SkippableFact(Baseline = "https://bugs.mysql.com/bug.php?id=94075")]
279+
[Fact]
280280
public void CancelEmptyCommandIsNoop()
281281
{
282282
using var cmd = new MySqlCommand();

0 commit comments

Comments
 (0)