Skip to content

Commit 4cd45f6

Browse files
committed
Add another new bug in MySql.Data 8.0.21.
1 parent 2948161 commit 4cd45f6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,3 +250,4 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
250250
* [#99793](https://bugs.mysql.com/bug.php?id=99793): Prepared stored procedure command doesn't verify parameter types
251251
* [#100159](https://bugs.mysql.com/bug.php?id=100159): SQL with DateTime parameter returns String value
252252
* [#100208](https://bugs.mysql.com/bug.php?id=100208): `GetSchema("Procedures")` returns `ROUTINE_DEFINITION` of `"System.Byte[]"`
253+
* [#100218](https://bugs.mysql.com/bug.php?id=100218): `TIME(n)` microsecond values deserialized incorrectly with prepared command

tests/SideBySide/PreparedCommandTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,6 @@ public static IEnumerable<object[]> GetInsertAndQueryData()
385385
#else
386386
yield return new object[] { isPrepared, "BOOL", true, MySqlDbType.Int32 };
387387
#endif
388-
389-
// https://bugs.mysql.com/bug.php?id=91770
390388
yield return new object[] { isPrepared, "TIME(3)", TimeSpan.Zero.Subtract(new TimeSpan(15, 10, 34, 56, 789)), MySqlDbType.Time };
391389

392390
#if !BASELINE

0 commit comments

Comments
 (0)