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 2bea2cc  IGNITE-15519: Fix compilation due to competed commits.
2bea2cc is described below

commit 2bea2ccc63760fc6fa183f7a0b93cdd64dac9e31
Author: Andrew Mashenkov <[email protected]>
AuthorDate: Fri Sep 17 16:09:21 2021 +0300

    IGNITE-15519: Fix compilation due to competed commits.
---
 .../org/apache/ignite/internal/table/MutableRowTupleAdapterTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/modules/table/src/test/java/org/apache/ignite/internal/table/MutableRowTupleAdapterTest.java
 
b/modules/table/src/test/java/org/apache/ignite/internal/table/MutableRowTupleAdapterTest.java
index f914750..5994175 100644
--- 
a/modules/table/src/test/java/org/apache/ignite/internal/table/MutableRowTupleAdapterTest.java
+++ 
b/modules/table/src/test/java/org/apache/ignite/internal/table/MutableRowTupleAdapterTest.java
@@ -379,7 +379,7 @@ public class MutableRowTupleAdapterTest {
     public void testSerialization() throws Exception {
         Random rnd = new Random();
 
-        SchemaDescriptor schema = new SchemaDescriptor(tbl.tableId(), 42,
+        SchemaDescriptor schema = new SchemaDescriptor(42,
             new Column[]{new Column("keyUuidCol", NativeTypes.UUID, true)},
             new Column[]{
                 new Column("valByteCol", INT8, true),
@@ -431,7 +431,7 @@ public class MutableRowTupleAdapterTest {
     public void testKeyValueSerialization() throws Exception {
         Random rnd = new Random();
 
-        SchemaDescriptor schema = new SchemaDescriptor(tbl.tableId(), 42,
+        SchemaDescriptor schema = new SchemaDescriptor(42,
             new Column[]{new Column("keyUuidCol", NativeTypes.UUID, true)},
             new Column[]{
                 new Column("valByteCol", INT8, true),

Reply via email to