File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ The following bugs in Connector/NET are fixed by switching to MySqlConnector. (~
118
118
* [ #88124 ] ( https://bugs.mysql.com/bug.php?id=88124 ) : CommandTimeout isn’t reset when calling Read/NextResult
119
119
* ~~ [ #88472 ] ( https://bugs.mysql.com/bug.php?id=88472 ) : ` TINYINT(1) ` is not returned as ` bool ` if ` MySqlCommand.Prepare ` is called~~
120
120
* [ #88611 ] ( https://bugs.mysql.com/bug.php?id=88611 ) : ` MySqlCommand ` can be executed even if it has "wrong" transaction
121
- * [ #88660 ] ( https://bugs.mysql.com/bug.php?id=88660 ) : ` MySqlClientFactory.Instance.CreateDataAdapter() ` and ` CreateCommandBuilder ` return ` null `
121
+ * ~~ [ #88660 ] ( https://bugs.mysql.com/bug.php?id=88660 ) : ` MySqlClientFactory.Instance.CreateDataAdapter() ` and ` CreateCommandBuilder ` return ` null ` ~~
122
122
* [ #89085 ] ( https://bugs.mysql.com/bug.php?id=89085 ) : ` MySqlConnection.Database ` not updated after ` USE database; `
123
123
* [ #89159 ] ( https://bugs.mysql.com/bug.php?id=89159 ) : ` MySqlDataReader ` cannot outlive ` MySqlCommand `
124
124
* [ #89335 ] ( https://bugs.mysql.com/bug.php?id=89335 ) : ` MySqlCommandBuilder.DeriveParameters ` fails for ` JSON ` type
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ public void CreateParameter()
31
31
}
32
32
33
33
#if ! NETCOREAPP1_1_2
34
- [ SkippableFact ( Baseline = "https://bugs.mysql.com/bug.php?id=88660" ) ]
34
+ [ Fact ]
35
35
public void CreateCommandBuilder ( )
36
36
{
37
37
Assert . IsType < MySqlCommandBuilder > ( MySqlClientFactory . Instance . CreateCommandBuilder ( ) ) ;
38
38
}
39
39
40
- [ SkippableFact ( Baseline = "https://bugs.mysql.com/bug.php?id=88660" ) ]
40
+ [ Fact ]
41
41
public void CreateDataAdapter ( )
42
42
{
43
43
Assert . IsType < MySqlDataAdapter > ( MySqlClientFactory . Instance . CreateDataAdapter ( ) ) ;
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk" >
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup Condition =" '$(Configuration)' != 'Baseline' " >
4
4
<TargetFrameworks >net452;net461;net472;netcoreapp1.1.2;netcoreapp2.0;netcoreapp2.1</TargetFrameworks >
39
39
</ItemGroup >
40
40
41
41
<ItemGroup Condition =" '$(Configuration)' == 'Baseline' " >
42
- <PackageReference Include =" MySql.Data" Version =" 8.0.13 " />
42
+ <PackageReference Include =" MySql.Data" Version =" 8.0.15 " />
43
43
</ItemGroup >
44
44
45
45
<ItemGroup Condition =" '$(TargetFramework)' == 'netcoreapp1.1.2' " >
You can’t perform that action at this time.
0 commit comments