Skip to content

Commit

Permalink
Skip tests in NorthwindSplitIncludeNoTrackingQueryNpgsqlTest
Browse files Browse the repository at this point in the history
Related Github issue: dotnet/efcore#26808
  • Loading branch information
giangpham712 committed Oct 15, 2023
1 parent 634bba0 commit da3015e
Showing 1 changed file with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;

namespace Npgsql.EntityFrameworkCore.PostgreSQL.Query;

public class NorthwindSplitIncludeNoTrackingQueryNpgsqlTest : NorthwindSplitIncludeNoTrackingQueryTestBase<NorthwindQueryNpgsqlFixture<NoopModelCustomizer>>
Expand All @@ -9,4 +11,22 @@ public NorthwindSplitIncludeNoTrackingQueryNpgsqlTest(
{
// TestSqlLoggerFactory.CaptureOutput(testOutputHelper);
}
}

[SkipForCockroachDb("https://github.com/dotnet/efcore/issues/26808")]
public override Task Include_collection_skip_no_order_by(bool async)
{
return base.Include_collection_skip_no_order_by(async);
}

[SkipForCockroachDb("https://github.com/dotnet/efcore/issues/26808")]
public override Task Include_collection_skip_take_no_order_by(bool async)
{
return base.Include_collection_skip_take_no_order_by(async);
}

[SkipForCockroachDb("https://github.com/dotnet/efcore/issues/26808")]
public override Task Include_collection_take_no_order_by(bool async)
{
return base.Include_collection_take_no_order_by(async);
}
}

0 comments on commit da3015e

Please sign in to comment.