This is an automated email from the ASF dual-hosted git repository.
tkalkirill pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 1473859eb4 IGNITE-19086 Fix NullPointerException on building indexes
if the number of replicas is more than one (#1963)
1473859eb4 is described below
commit 1473859eb41874d5585451df04e26be5fa678356
Author: Kirill Tkalenko <[email protected]>
AuthorDate: Thu Apr 20 15:02:24 2023 +0300
IGNITE-19086 Fix NullPointerException on building indexes if the number of
replicas is more than one (#1963)
---
.../java/org/apache/ignite/internal/sql/engine/ItBuildIndexTest.java | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItBuildIndexTest.java
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItBuildIndexTest.java
index df3c5fda12..7218e9b4e9 100644
---
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItBuildIndexTest.java
+++
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItBuildIndexTest.java
@@ -76,9 +76,7 @@ public class ItBuildIndexTest extends
ClusterPerClassIntegrationTest {
}
private static int[] replicas() {
- // TODO: IGNITE-19086 Fix NullPointerException on insertAll
- // return new int[]{1, 2, 3};
- return new int[]{1};
+ return new int[]{1, 2, 3};
}
private static String toValuesString(List<Object>... values) {