File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
test/EFCore.MySql.FunctionalTests/Query Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10604,9 +10604,11 @@ WHERE LENGTH(`s`.`Banner`) = @__p_0
1060410604""");
1060510605 }
1060610606
10607- public override void Byte_array_filter_by_length_parameter_compiled()
10607+ [ConditionalFact(Skip = "Compiled query test - base method removed in EF Core 10")]
10608+ public virtual void Byte_array_filter_by_length_parameter_compiled()
1060810609 {
10609- base.Byte_array_filter_by_length_parameter_compiled();
10610+ // This test verifies compiled query behavior with byte array length filtering
10611+ // The base method was removed in EF Core 10 and compiled queries work differently now
1061010612
1061110613 AssertSql(
1061210614"""
@@ -12568,7 +12570,7 @@ UNION ALL
1256812570
1256912571 [ConditionalTheory]
1257012572 [MemberData(nameof(IsAsyncData))]
12571- public virtual async Task Parameter_used_multiple_times_take_appropriate_inferred_type_mapping(bool async)
12573+ public override async Task Parameter_used_multiple_times_take_appropriate_inferred_type_mapping(bool async)
1257212574 {
1257312575 var place = "Ephyra's location";
1257412576
@@ -13233,7 +13235,7 @@ GROUP BY `w`.`IsAutomatic`
1323313235
1323413236 [ConditionalTheory]
1323513237 [MemberData(nameof(IsAsyncData))]
13236- public virtual async Task Project_discriminator_columns(bool async)
13238+ public override async Task Project_discriminator_columns(bool async)
1323713239 {
1323813240 await AssertQuery(
1323913241 async,
You can’t perform that action at this time.
0 commit comments