You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by tk...@apache.org on 2022/10/04 14:14:58 UTC

[ignite-3] branch main updated: IGNITE-17823 Use static test sorted index name (#1159)

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 acfb76538b IGNITE-17823 Use static test sorted index name (#1159)
acfb76538b is described below

commit acfb76538b7a6f3d1e2663cc62d7e381311d5e62
Author: Alexander Polovtcev <al...@gmail.com>
AuthorDate: Tue Oct 4 17:14:52 2022 +0300

    IGNITE-17823 Use static test sorted index name (#1159)
---
 .../ignite/internal/storage/index/AbstractSortedIndexStorageTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java b/modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java
index c3b28735ce..7ba2a0231b 100644
--- a/modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java
+++ b/modules/storage-api/src/testFixtures/java/org/apache/ignite/internal/storage/index/AbstractSortedIndexStorageTest.java
@@ -168,7 +168,7 @@ public abstract class AbstractSortedIndexStorageTest {
      * Creates a Sorted Index using the given columns.
      */
     private SortedIndexStorage createIndexStorage(List<ColumnDefinition> indexSchema) {
-        SortedIndexDefinitionBuilder indexDefinitionBuilder = SchemaBuilders.sortedIndex(randomString(random, 10));
+        SortedIndexDefinitionBuilder indexDefinitionBuilder = SchemaBuilders.sortedIndex("TEST_IDX");
 
         indexSchema.forEach(column -> {
             SortedIndexColumnBuilder columnBuilder = indexDefinitionBuilder.addIndexColumn(column.name());