You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2023/06/06 12:32:04 UTC

[ignite-3] branch main updated: IGNITE-19496 Fix compilation (#2100).

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

amashenkov 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 3760866109 IGNITE-19496 Fix compilation (#2100).
3760866109 is described below

commit 37608661098a842b9dc5ac6e11dc0c5b49611e1f
Author: amashenkov <an...@gmail.com>
AuthorDate: Tue Jun 6 15:31:31 2023 +0300

    IGNITE-19496 Fix compilation (#2100).
---
 .../internal/sql/engine/schema/CatalogSqlSchemaManagerTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/schema/CatalogSqlSchemaManagerTest.java b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/schema/CatalogSqlSchemaManagerTest.java
index 33e284affd..34159f7521 100644
--- a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/schema/CatalogSqlSchemaManagerTest.java
+++ b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/schema/CatalogSqlSchemaManagerTest.java
@@ -594,13 +594,13 @@ public class CatalogSqlSchemaManagerTest {
 
         IndexDescriptor newDescriptor(int tableId) {
             if (hashColumns != null) {
-                return new HashIndexDescriptor(id, name, tableId, hashColumns);
+                return new HashIndexDescriptor(id, name, tableId, false, hashColumns);
             } else if (sortedColumns != null) {
                 List<IndexColumnDescriptor> indexColumns = sortedColumns.stream()
                         .map((e) -> new IndexColumnDescriptor(e.getKey(), e.getValue()))
                         .collect(Collectors.toList());
 
-                return new SortedIndexDescriptor(id, name, tableId, indexColumns);
+                return new SortedIndexDescriptor(id, name, tableId, false, indexColumns);
             } else {
                 throw new IllegalStateException("Unable to create index");
             }