This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-22133-bak
in repository https://gitbox.apache.org/repos/asf/ignite-3.git

commit 7419029796efc2809dac47b0108c5f4e736f1cf7
Author: Pavel Tupitsyn <[email protected]>
AuthorDate: Fri Jul 11 13:29:21 2025 +0300

    wip test infra
---
 .../Query/NorthwindWhereQueryIgniteTest.cs         | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindWhereQueryIgniteTest.cs
 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindWhereQueryIgniteTest.cs
index 7d2256d50a3..c6f83f6bc8a 100644
--- 
a/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindWhereQueryIgniteTest.cs
+++ 
b/modules/platforms/dotnet/Apache.Ignite.EntityFrameworkCore.FunctionalTests/Query/NorthwindWhereQueryIgniteTest.cs
@@ -1,10 +1,28 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements. See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License. You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
 namespace Apache.Ignite.EntityFrameworkCore.FunctionalTests.Query;
 
 using Microsoft.EntityFrameworkCore.Query;
 using Microsoft.EntityFrameworkCore.TestUtilities;
 
 public class NorthwindWhereQueryIgniteTest : 
NorthwindWhereQueryRelationalTestBase<
-    NorthwindQuerySqlServerFixture<NoopModelCustomizer>>
+    NorthwindQueryIgniteFixture<NoopModelCustomizer>>
 {
-
+    public 
NorthwindWhereQueryIgniteTest(NorthwindQueryIgniteFixture<NoopModelCustomizer> 
fixture)
+        : base(fixture)
+    {
+    }
 }

Reply via email to