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

vpyatkov 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 bffc94cd4b IGNITE-20672 Broke compilation (#2705)
bffc94cd4b is described below

commit bffc94cd4b3eefee7f6e8772778fb45714bfe228
Author: Vladislav Pyatkov <vldpyat...@gmail.com>
AuthorDate: Tue Oct 17 15:23:24 2023 +0300

    IGNITE-20672 Broke compilation (#2705)
---
 .../org/apache/ignite/internal/table/ItInternalTableTest.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/table/ItInternalTableTest.java
 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/table/ItInternalTableTest.java
index 9a7503e73d..e59dacf754 100644
--- 
a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/table/ItInternalTableTest.java
+++ 
b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/table/ItInternalTableTest.java
@@ -359,7 +359,7 @@ public class ItInternalTableTest extends 
BaseIgniteAbstractTest {
         List<BinaryRowEx> keyRows = 
populateEvenKeysAndPrepareEntriesToLookup(true);
 
         InternalTable internalTable = ((TableImpl) table).internalTable();
-        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().schema();
+        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().lastKnownSchema();
 
         CompletableFuture<List<BinaryRow>> getAllFut = 
internalTable.getAll(keyRows, null);
 
@@ -395,7 +395,7 @@ public class ItInternalTableTest extends 
BaseIgniteAbstractTest {
         List<BinaryRowEx> keyRows = 
populateEvenKeysAndPrepareEntriesToLookup(true);
 
         InternalTable internalTable = ((TableImpl) table).internalTable();
-        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().schema();
+        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().lastKnownSchema();
 
         CompletableFuture<List<BinaryRow>> deleteAllFut = 
internalTable.deleteAll(keyRows, null);
 
@@ -421,7 +421,7 @@ public class ItInternalTableTest extends 
BaseIgniteAbstractTest {
         List<BinaryRowEx> rowsToLookup = 
populateEvenKeysAndPrepareEntriesToLookup(false);
 
         InternalTable internalTable = ((TableImpl) table).internalTable();
-        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().schema();
+        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().lastKnownSchema();
 
         CompletableFuture<List<BinaryRow>> deleteAllExactFut = 
internalTable.deleteAllExact(rowsToLookup, null);
 
@@ -449,7 +449,7 @@ public class ItInternalTableTest extends 
BaseIgniteAbstractTest {
         List<BinaryRowEx> rowsToLookup = 
populateEvenKeysAndPrepareEntriesToLookup(false);
 
         InternalTable internalTable = ((TableImpl) table).internalTable();
-        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().schema();
+        SchemaDescriptor schemaDescriptor = ((TableImpl) 
table).schemaView().lastKnownSchema();
 
         CompletableFuture<List<BinaryRow>> insertAllFut = 
internalTable.insertAll(rowsToLookup, null);
 

Reply via email to