Skip to content

Commit d6153e8

Browse files
committed
Update a bug that's been fixed in Connector/NET.
1 parent 058c7f5 commit d6153e8

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
@@ -214,7 +214,7 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
214214
* ~~[#89159](https://bugs.mysql.com/bug.php?id=89159), [#97242](https://bugs.mysql.com/bug.php?id=97242): `MySqlDataReader` cannot outlive `MySqlCommand`~~
215215
* [#89335](https://bugs.mysql.com/bug.php?id=89335): `MySqlCommandBuilder.DeriveParameters` fails for `JSON` type
216216
* [#89639](https://bugs.mysql.com/bug.php?id=89639): `ReservedWords` schema contains incorrect data
217-
* [#90086](https://bugs.mysql.com/bug.php?id=90086): `MySqlDataReader` is closed by an unrelated command disposal
217+
* ~~[#90086](https://bugs.mysql.com/bug.php?id=90086): `MySqlDataReader` is closed by an unrelated command disposal~~
218218
* [#91123](https://bugs.mysql.com/bug.php?id=91123): Database names are case-sensitive when calling a stored procedure
219219
* [#91199](https://bugs.mysql.com/bug.php?id=91199): Can't insert `MySqlDateTime` values
220220
* ~~[#91751](https://bugs.mysql.com/bug.php?id=91751): `YEAR` column retrieved incorrectly with prepared command~~

tests/SideBySide/CommandTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public void CancelEmptyCommandIsNoop()
283283
cmd.Cancel();
284284
}
285285

286-
[SkippableFact(Baseline = "https://bugs.mysql.com/bug.php?id=90086")]
286+
[Fact]
287287
public void CommandsAreIndependent()
288288
{
289289
using var connection = new MySqlConnection(AppConfig.ConnectionString);

0 commit comments

Comments
 (0)